server-master/srcs/WingsAPI.Data/Account/IAccountPenaltyDao.cs
2026-02-10 18:21:30 +01:00

10 lines
No EOL
287 B
C#

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