private void btnCrear_Click(object sender, EventArgs e)
        {
            prestamo prestamo = new prestamo();

            if (alumno != null)
            {
                prestamo.AlumnoId = alumno.NumeroControl;
            }
            else
            {
                prestamo.DocenteId = docente.NumeroEmpleado;
            }
            prestamo.EstadoPrestamoId = 1;
            prestamo.Fecha            = DateTime.Now;

            foreach (var material in materiales)
            {
                prestamomaterial prestamomaterial = new prestamomaterial();
                prestamomaterial.MaterialId = material.MaterialId;
                prestamomaterial.EstadoMaterialPrestamoId = material.EstadoMaterialId;
                prestamo.prestamomaterial.Add(prestamomaterial);
            }
            administradorPrestamos.Agregar(prestamo);
        }
Exemplo n.º 2
0
 public void Agregar(prestamo prestamo)
 {
     contexto.prestamo.Add(prestamo);
     contexto.SaveChanges();
 }