public async Task <IActionResult> Create([Bind("Id,Nombre,SexoPaciente,PrematuroPaciente")] Calendario calendario) { if (ModelState.IsValid) { _context.Add(calendario); await _context.SaveChangesAsync(); return(RedirectToAction(nameof(Index))); } return(View(calendario)); }
public async Task <IActionResult> Create([Bind("Id,Nombre,Apellido,Email")] Tutor tutor) { if (ModelState.IsValid) { _context.Add(tutor); await _context.SaveChangesAsync(); return(RedirectToAction(nameof(Index))); } return(View(tutor)); }
public async Task <IActionResult> Create([Bind("Id,Nombre,PeriodoAplicación,Beneficios")] Vacuna vacuna) { if (ModelState.IsValid) { _context.Add(vacuna); await _context.SaveChangesAsync(); return(RedirectToAction(nameof(Index))); } return(View(vacuna)); }
public async Task <IActionResult> Create([Bind("Id,Nombre,Apellido,Dni,FechaNacimiento,Sexo,Prematuro,Peso,Domicilio,TutorId,CalendarioId")] Paciente paciente) { if (ModelState.IsValid) { _context.Add(paciente); await _context.SaveChangesAsync(); return(RedirectToAction(nameof(Index))); } ViewData["CalendarioId"] = new SelectList(_context.Calendarios, "Id", "Nombre", paciente.CalendarioId); ViewData["TutorId"] = new SelectList(_context.Tutores, "Id", "Apellido", paciente.TutorId); return(View(paciente)); }