Exemple #1
0
 public Assignment(string nombre, int refuser, string fecha, decimal precio, string descripcion)
 {
     this.gestor       = new GestorAssignment();
     this.idassignment = gestor.getLastId() + 1;
     this.nombre       = nombre;
     this.refuser      = refuser;
     this.fecha        = fecha;
     this.precio       = precio;
     this.descripcion  = descripcion;
 }
Exemple #2
0
 public Assignment()
 {
     this.gestor = new GestorAssignment();
 }