Exemple #1
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();
        }
Exemple #2
0
 public GenericEntry()
 {
     InitializeComponent();
     _IProductGeneric = new BLL.BProductGeneric();
     Reset();
 }
Exemple #3
0
 public void SetProxy(object target, InterceptorInvoker invoker)
 {
     this._target  = target as IProductGeneric <T>;
     this._invoker = invoker;
 }