Beispiel #1
0
 public async Task <List <ClientEntity> > GetAll(int userId)
 {
     // TODO: [TESTS] (ClientRepo.GetAll) Add tests
     return(await GetList <ClientEntity>(
                nameof(GetAll),
                _queries.GetAll(),
                new { UserId = userId }
                ));
 }