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