public ActionResult Edit(LoteViewModel model)
 {
     try
     {
         var service = new FabricacionServices.LotesServiceClient();
         service.EditarLote(model.Id, model.NroLote);
         return Index(true);
     }
     catch
     {
         return View();
     }
 }