示例#1
0
 public Operaciones(int idOperacion, EstacionFsociety estacion, Tanque tanqueDiesel, Tanque tanqueSuper, Tanque tanquePremium)
 {
     this.idOperacion   = idOperacion;
     this.estacion      = estacion;
     this.tanqueDiesel  = tanqueDiesel;
     this.tanqueSuper   = tanqueSuper;
     this.tanquePremium = tanquePremium;
 }
示例#2
0
 public Operaciones(int idOperacion, DateTime fechaOperacion, int totalFacturado, int totalLitros, EstacionFsociety estacion, Tanque tanqueDiesel, Tanque tanqueSuper, Tanque tanquePremium)
 {
     this.idOperacion    = idOperacion;
     this.fechaOperacion = fechaOperacion;
     this.totalFacturado = totalFacturado;
     this.totalLitros    = totalLitros;
     this.estacion       = estacion;
     this.tanqueDiesel   = tanqueDiesel;
     this.tanqueSuper    = tanqueSuper;
     this.tanquePremium  = tanquePremium;
 }