public InteracaoEstacionamentoComCFG()
 {
     estDAO     = new EstacionamentoDAOImpl();
     cfgDAO     = new CfgDAOImpl();
     geradorCod = new BarCodeGeneratorTM();
     clock      = new GeradorDeDataTM();
 }
Пример #2
0
 public CancelaSaida()
 {
     calc    = new CalculadorDePrecos();
     est     = new EstacionamentoDAOImpl();
     datador = new GeradorDeDataTM();
     estcfg  = new InteracaoEstacionamentoComCFG();
     im      = new IntercaoMotivos();
 }
Пример #3
0
 public CalculadorDePrecos()
 {
     estDAO           = new EstacionamentoDAOImpl();
     clock            = new GeradorDeDataTM();
     cfg              = new CfgDAOImpl();
     intcfg           = new InteracaoEstacionamentoComCFG();
     horaEncerramento = cfg.GetConfiguracao().horaEncerrameto.Hour;
     horaAbertura     = cfg.GetConfiguracao().horaAbertura.Hour;
 }
Пример #4
0
        public void diferencaDiasTest()
        {
            EstacionamentoDAOImpl ed    = new EstacionamentoDAOImpl();
            GeradorDeDataTM       clock = new GeradorDeDataTM();
            var ticket = ed.GetEstacionamentoByID("ASD");

            Console.WriteLine(ticket.dt_hr_entrada);

            //int dias = clock.diferencaDias(DateTime.Now, ticket.dt_hr_entrada);
            //Console.WriteLine(dias);
        }
Пример #5
0
 public Guiche()
 {
     im           = new IntercaoMotivos();
     cfg          = new InteracaoEstacionamentoComCFG();
     cp           = new CalculadorDePrecos();
     bcg          = new BarCodeGeneratorTM();
     clock        = new GeradorDeDataTM();
     yareYare     = new InteracaoUsuarioEstacionamento();
     ticketEmitir = new Estacionamento();
     estDAO       = new EstacionamentoDAOImpl();
 }
 public InteracaoUsuarioEstacionamento()
 {
     estDAO = new EstacionamentoDAOImpl();
 }