示例#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);
        }
示例#2
0
 public FormCarListAdmin()
 {
     InitializeComponent();
     FormUtils.AddCarsToListView(lvCarList);
 }