Example #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;
 }
Example #2
0
 public Surtidor(int idSurtidor, Playero playero, Tanque tipoTanque, int litrosSurtidos, int montoSurtido, int cantOperaciones)
 {
     this.idSurtidor      = idSurtidor;
     this.playero         = playero;
     this.tipoTanque      = tipoTanque;
     this.litrosSurtidos  = litrosSurtidos;
     this.montoSurtido    = montoSurtido;
     this.cantOperaciones = cantOperaciones;
 }
Example #3
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;
 }