Beispiel #1
0
 public IActionResult SaveImages(int foodCategoryId, string[] images)
 {
     _foodCategoryService.AddImages(foodCategoryId, images, out bool result, out string message);
     return(new OkObjectResult(new GenericResult(result, message)));
 }