AccountAppService.cs 748 B

123456789101112131415161718192021222324
  1. using ECL142.BasicAuth.Application.AppService.Base;
  2. using ECL142.BasicAuth.Application.Contracts.AppService.Identity;
  3. using ECL142.BasicAuth.Application.Contracts.Dto.Identity.Accounts;
  4. namespace ECL142.BasicAuth.Application.AppService.Identity
  5. {
  6. public class AccountAppService : BaseAppService, IAccountAppService
  7. {
  8. public Task<AccountDto> GetAsync()
  9. {
  10. throw new NotImplementedException();
  11. }
  12. public Task<List<AccountPermissionsDto>> GetPermissionsAsync()
  13. {
  14. throw new NotImplementedException();
  15. }
  16. public Task UpdatePasswordAnsync(AccountUpdatePasswordDto accountUpdatePassword)
  17. {
  18. throw new NotImplementedException();
  19. }
  20. }
  21. }