using ECL142.BasicAuth.Application.AppService.Base; using ECL142.BasicAuth.Application.Contracts.AppService.Identity; using ECL142.BasicAuth.Application.Contracts.Dto.Identity.Accounts; namespace ECL142.BasicAuth.Application.AppService.Identity { public class AccountAppService : BaseAppService, IAccountAppService { public Task GetAsync() { throw new NotImplementedException(); } public Task> GetPermissionsAsync() { throw new NotImplementedException(); } public Task UpdatePasswordAnsync(AccountUpdatePasswordDto accountUpdatePassword) { throw new NotImplementedException(); } } }