public ActionResult Banner(Banner model)
 {
     try
     {
         model.PhotoURL = "-";
         _bannerService.BannerUpdate(model);
         return(View());
     }
     catch (Exception)
     {
         return(View());
     }
 }