123456789101112131415161718192021222324 |
- 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<AccountDto> GetAsync()
- {
- throw new NotImplementedException();
- }
- public Task<List<AccountPermissionsDto>> GetPermissionsAsync()
- {
- throw new NotImplementedException();
- }
- public Task UpdatePasswordAnsync(AccountUpdatePasswordDto accountUpdatePassword)
- {
- throw new NotImplementedException();
- }
- }
- }
|