Ejemplo n.º 1
0
 public async Task <ActionResult <IEnumerable <Role> > > AllByName(string name, int?limit, int?skip)
 {
     return(Ok(await _repository.GetAllByName(name, limit, skip)));
 }