// GET: ClienteController/Details/5 public ActionResult Details(int id) { SucursalProductoVM model = new SucursalProductoVM(); var resultado = new SucursalLogica().ObtenerSucursalPorCodigo(id); if (resultado.GetType() == typeof(ErrorDTO)) { model.Error = (ErrorDTO)resultado; } else { model.Sucursal = (SucursalDTO)resultado; } return(View(model)); }
public ActionResult Create(SucursalDTO model) { try { var resultado = new SucursalLogica().AgregarSucursal(model.DirSucursal, model.HorarioSucursal, model.TelefonoSucursal, model.CorreoElectronico); // TODO: Hacerlo con el parametro sucursaldDTO if (resultado.GetType() == typeof(ErrorDTO)) { throw new Exception("Error"); } else { return(RedirectToAction("Details", new { id = resultado.IdEntidad })); // return RedirectToAction(nameof(Index)); } } catch { return(View()); } }