public frmSubProductCategory() { productSubCategoryBLL = new ProductSubCategoryBLL(dbHelper); productCategoryBLL = new ProductCategoryBLL(dbHelper); InitializeComponent(); dataGridView1.CellContentClick += dataGridView1_CellContentClick; FillGrid(); GetAllProductCategory(); }
public frmProduct() { productBLL = new ProductBLL(dbHelper); sizeBLL = new SizeBLL(dbHelper); productSubCategoryBLL = new ProductSubCategoryBLL(dbHelper); productCategoryBLL = new ProductCategoryBLL(dbHelper); InitializeComponent(); dataGridView1.CellContentClick += dataGridView1_CellContentClick; FillGrid(); FillCombo(); }