public frmAlterarCombustivel(int idCombustivel)
        {
            InitializeComponent();

            _combustivelApp = new CombustivelAppService();
            BuscarCombustivel(idCombustivel);
        }
Ejemplo n.º 2
0
        public frmIncluirMotorista()
        {
            InitializeComponent();

            _motoristaApp   = new MotoristaAppService();
            _combustivelApp = new CombustivelAppService();

            GetAllCombustiveis();
        }
Ejemplo n.º 3
0
        public frmConsultarCombustivel()
        {
            InitializeComponent();

            _combustivelApp = new CombustivelAppService();

            GetAllCombustiveis();
            LimparSelecao();
        }
Ejemplo n.º 4
0
        public frmAlterarMotorista(int idMotorista)
        {
            InitializeComponent();

            _motoristaApp   = new MotoristaAppService();
            _combustivelApp = new CombustivelAppService();

            GetAllCombustiveis();
            BuscarMotorista(idMotorista);
        }
Ejemplo n.º 5
0
 public frmIncluirCombustivel()
 {
     InitializeComponent();
     _combustivelApp = new CombustivelAppService();
 }