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