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; }
public Assignment() { this.gestor = new GestorAssignment(); }