コード例 #1
0
ファイル: UserService.cs プロジェクト: eddThunder/ecopanelAPI
        public async Task <UserDto> GetByCredentials(string username, string password)
        {
            var user = await _userRepository.GetByCredentials(username, password);

            return(UserRolesFactoryMapper.MapToDto(user));
        }
コード例 #2
0
ファイル: UserService.cs プロジェクト: eddThunder/ecopanelAPI
        public async Task <IEnumerable <UserDto> > GetAllUsersAsync()
        {
            var userList = await _userRepository.GetAllUsersAsync();

            return(UserRolesFactoryMapper.MapToDto(userList.ToList()));
        }