Esempio n. 1
0
 public ActionResult <InspectionCountsViewModel> GetInspectionCounts([ModelBinder(BinderType = typeof(CsvArrayBinder))] int?[] districts, [ModelBinder(BinderType = typeof(CsvArrayBinder))] int?[] inspectors)
 {
     return(Ok(_service.GetInspectionCounts(districts, inspectors)));
 }