Exemplo n.º 1
0
 public IActionResult AddFlickrSetToGallery(string setId)
 {
     try
     {
         _galleryRepository.AddFlickrAlbum(setId);
         return(Ok());
     }
     catch (Exception ex)
     {
         return(BadRequest(ex.Message));
     }
 }