public JsonResult ChangeBackgroundPhoto(int photoId)
 {
     try
     {
         _photoService.ChangeBackgroundPhoto(photoId);
         return(Json(true));
     }
     catch (Exception)
     {
         return(Json(false));
     }
 }