public async Task <IEnumerable <UserStatus> > GetAll() => await _userStatusRepository.GetAll();
Beispiel #2
0
 public IEnumerable <UserStatus> GetAll()
 {
     return(repo.GetAll());
 }