// 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 LoadByName(string name); Task GetByNameAsync(string name); Task> LoadByMasterAccountIdAsync(Guid masterAccountId); }