예제 #1
0
 public IActionResult CargarPrecioHospedaje(HospedajePrecioModel model)
 {
     return(RedirectToAction("PreciosHospedaje", new { idCurso = model.IdCurso, idTipoHospedaje = model.TipoHospedajeSeleccionado }));
 }
예제 #2
0
 public IActionResult PreciosHospedaje(HospedajePrecioModel model)
 {
     _servicio.GuardarPreciosHospedaje(model.IdCurso, model.TipoHospedajeSeleccionado, model.PrecioPorSemana);
     return(RedirectToAction("PreciosHospedaje", new { idCurso = model.IdCurso, idTipoHospedaje = model.TipoHospedajeSeleccionado }));
 }