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

18 lines
No EOL
427 B
C#

// WingsEmu
//
// Developed by NosWings Team
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
using PhoenixLib.DAL;
namespace WingsAPI.Data.Account;
public interface IAccountDAO : IGenericAsyncLongRepository<AccountDTO>
{
AccountDTO LoadByName(string name);
Task<AccountDTO> GetByNameAsync(string name);
Task<List<AccountDTO>> LoadByMasterAccountIdAsync(Guid masterAccountId);
}