コード例 #1
0
ファイル: FormAddCar.cs プロジェクト: TGrigor/CarShop
 public FormAddCar()
 {
     InitializeComponent();
     _carController   = new CarController();
     _brandController = new BrandController();
     _modelController = new ModelController();
     FormUtils.AddBrandToList(ref comboBoxBrand, ref _brandController);
 }
コード例 #2
0
ファイル: FormCarListClient.cs プロジェクト: TGrigor/CarShop
        public FormCarListClient()
        {
            InitializeComponent();
            btnSearch.Image  = Image.FromFile(_filePath);
            _brandController = new BrandController();
            _modelController = new ModelController();
            FormUtils.AddBrandToList(ref comboBoxBrands, ref _brandController);

            FormUtils.AddCarsToListView(lvCarList);
        }