public ActionResult mtdGuardar(conSERpServicio PobjServicioModelo, HttpPostedFileBase file) { if (ModelState.IsValid) { if (!string.IsNullOrEmpty(PobjServicioModelo.SERimagenes)) { if (file != null) { //string fullPath = Server.MapPath("~/Uploads/" + PobjServicioModelo.SERimagenes); //if (System.IO.File.Exists(fullPath)) //{ // System.IO.File.Delete(fullPath); //} PobjServicioModelo.SERimagenes = mtdSubirImagen(file); } } else { if (file != null) { PobjServicioModelo.SERimagenes = mtdSubirImagen(file); } } PobjServicioModelo.mtdGuardar(); } else { ViewBag.lstCategoriaServicios = mtdListarCategoria(); ViewBag.lstServicios = mtdCargarServicios(); ViewBag.lstDepartamentos = mtdCargarDepartamentos(); return(View("conFrmServicioVista", PobjServicioModelo)); } return(Redirect("~/conClsServicio/conFrmMisServiciosVista")); }
// GET: conClsServicio public ActionResult conFrmServicioVista(int id = 0) { //Listas ViewBag.lstCategoriaServicios = mtdListarCategoria(); //Departamento, Provincia, Ciudad ViewBag.lstDepartamentos = mtdCargarDepartamentos(); conSERpServicio GobjServicio = new conSERpServicio(); GobjServicio.USUid_usuario = SessionHelper.GetUser(); return(View( id == 0 ? GobjServicio : PobjServicio.mtdObtener(id) )); }