async Task getFormats(AvailableFiltersViewModel model)
 {
     model.Formats = await formatService.FindAllAsync();
 }
 public async Task <IActionResult> Find()
 {
     return(new ObjectResult(await formatService.FindAllAsync()));
 }