10 lines
No EOL
287 B
C#
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);
|
|
} |