Example #1
0
        public FormCarListClient()
        {
            InitializeComponent();
            btnSearch.Image  = Image.FromFile(_filePath);
            _brandController = new BrandController();
            _modelController = new ModelController();
            FormUtils.AddBrandToList(ref comboBoxBrands, ref _brandController);

            FormUtils.AddCarsToListView(lvCarList);
        }
Example #2
0
 public FormCarListAdmin()
 {
     InitializeComponent();
     FormUtils.AddCarsToListView(lvCarList);
 }