Example #1
0
 public async Task <ActionResult <IEnumerable <TEntity> > > GetAll()
 {
     return(await service.GetAllAsync());
 }
Example #2
0
 public async Task <ICollection <Developer> > GetAllAsync()
 {
     return(await _service.GetAllAsync());
 }