Ejemplo n.º 1
0
 public async Task <ActionResult <JsonResponse <List <Fixture> > > > GetFixtures(SearchParams search)
 {
     return(new JsonResponse <List <Fixture> > {
         success = true, data = await _fixtureService.SearchAllFixturesAsync(search)
     });
 }