public ActionResult Delete(int id, FormCollection parameters)
 {
     try
     {
         _bannerFacade.Delete(id);
         return(RedirectToAction("Index"));
     }
     catch (Exception ex)
     {
         ModelState.AddModelError("", ex.InnerException.Message);
         return(View());
     }
 }