using System.Collections.Generic; using System.Threading.Tasks; using PhoenixLib.DAL; namespace WingsAPI.Data.Account; public interface IAccountBanDao : IGenericAsyncLongRepository { Task FindAccountBan(long accountId); Task> GetAccountBans(long accountId); }