예제 #1
0
 public async Task <ActionResult> CreateImagesWithExistingAnimal(IList <IFormFile> videos, long animalId)
 {
     try
     {
         await _videoService.CreateVideosWithExistingAnimal(videos, animalId);
     }
     catch (Exception ex)
     {
         return(BadRequest(ex.Message));
     }
     return(Ok());
 }