Esempio n. 1
0
        private void GetBrand()
        {
            List <BO.Brand> brands = new List <BO.Brand>();

            brands = _IBrand.GetBrandList().ToList();
            grvBrand.AutoGenerateColumns = false;
            grvBrand.DataSource          = brands;
        }
Esempio n. 2
0
        public ProductEntry()
        {
            InitializeComponent();
            _IProduct         = new BLL.BProduct();
            _IProductPackSize = new BLL.BProductPackSize();
            _Ibrand           = new BLL.BBrand();
            _IProductGeneric  = new BLL.BProductGeneric();
            _IProductCategory = new BLL.BProductCategory();

            COMMON.DDL.PopulateDropDownList(_IProductPackSize.GetProductPackSizeList().ToList(), ddlPackSize, "PackSizeID", "PackSize");
            COMMON.DDL.PopulateDropDownList(_Ibrand.GetBrandList().ToList(), ddlBrand, "BrandID", "BrandName");
            COMMON.DDL.PopulateDropDownList(_IProductGeneric.GetProductGenericList().ToList(), ddlGenericName, "PGenericID", "GenericName");
            //COMMON.DDL.PopulateDropDownList(_IProductCategory.GetProductCategoryList().ToList(), ddlCategorygory,"","");
            COMMON.DDL.PopulateDropDownList(_IProductCategory.GetProductCategoryList().ToList(), ddlCategory, "Id", "Name");
            Reset();
        }
Esempio n. 3
0
 public List <Brand> GetBrandList(IBrand _brand, int TenantID)
 {
     _brandList = _brand;
     return(_brandList.GetBrandList(TenantID));
 }