Exemple #1
0
 public Cuota(Boleta boleta_id, int precio, DateTime fecha_vencimiento, bool estado)
 {
     this.boleta_id         = boleta_id;
     this.precio            = precio;
     this.fecha_vencimiento = fecha_vencimiento;
     this.estado            = estado;
 }
Exemple #2
0
 public Cuota(Boleta boleta_id, int precio, DateTime fecha_vencimiento, bool estado, DateTime creado, DateTime modificado, DateTime eliminado)
 {
     this.boleta_id         = boleta_id;
     this.precio            = precio;
     this.fecha_vencimiento = fecha_vencimiento;
     this.estado            = estado;
     this.Creado            = creado;
     this.Modificado        = modificado;
     this.Eliminado         = eliminado;
 }
Exemple #3
0
 public Cuota(Boleta boleta_id)
 {
     this.boleta_id = boleta_id;
 }