public IEnumerable <UserModel> Get() { return(_usersService.All()); }
public UsersQuery(IUsersService usersService) { Field <ListGraphType <UsersType> >("Users", resolve: context => usersService.All()); }