public async Task <IEnumerable <UserFormViewModel> > GetUsers()
 {
     return(await _userQueryService.GetAll());
 }
Exemplo n.º 2
0
 public virtual IEnumerable <UserDTO> GetAll()
 {
     return(_userQueryService.GetAll());
 }