public ActionResult Edit(OrdenPago model)
 {
     try
     {
         var entity = Mapper.Map <Business.Entities.OrdenPago>(model);
         BCOrdenPago.Update(entity);
         return(RedirectToAction("Index"));
     }
     catch
     {
         return(View(model.Id));
     }
 }