コード例 #1
0
ファイル: frmVeiculo.cs プロジェクト: IsaiasNori/SmartLogMVC
        private void CarregarMarca()
        {
            try
            {
                MarcaController marcaCtrl = new MarcaController();
                DataTable       table     = marcaCtrl.CarregarComborMarcaController();

                cbMarca.CarregaCombo(table, "Cod_Marca", "Descricao", UserControl.eTipoMensagem.Selecione);
                cbMarcaPesquisa.CarregaCombo(table, "Cod_Marca", "Descricao", UserControl.eTipoMensagem.Selecione);
            }
            catch (Exception)
            {
                throw;
            }
        }