public frmAlterarCombustivel(int idCombustivel)
        {
            InitializeComponent();

            _combustivelApp = new CombustivelAppService();
            BuscarCombustivel(idCombustivel);
        }
예제 #2
0
        public frmIncluirMotorista()
        {
            InitializeComponent();

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

            GetAllCombustiveis();
        }
예제 #3
0
        public frmConsultarCombustivel()
        {
            InitializeComponent();

            _combustivelApp = new CombustivelAppService();

            GetAllCombustiveis();
            LimparSelecao();
        }
예제 #4
0
        public frmAlterarMotorista(int idMotorista)
        {
            InitializeComponent();

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

            GetAllCombustiveis();
            BuscarMotorista(idMotorista);
        }
예제 #5
0
 public frmIncluirCombustivel()
 {
     InitializeComponent();
     _combustivelApp = new CombustivelAppService();
 }