Esempio n. 1
0
        public ProductMaster GetProductDetails(string argSerialNo, string argMastMaterialCode, string argMaterialCode, string argMatGroup1Code, string argClientCode)
        {
            ProductMaster        objProductMaster        = new ProductMaster();
            ProductMasterManager objProductMasterManager = new ProductMasterManager();

            objProductMaster = objProductMasterManager.objGetProductMaster(argSerialNo, argMastMaterialCode, argMatGroup1Code, argClientCode);

            return(objProductMaster);
        }
Esempio n. 2
0
        private void LoadAllProductDetail(string argSerialNo, string argMastMaterialCode, string argMatGroup1Code, string argClientCode)
        {
            if (this.Count > 0)
            {
                this.Clear();
            }

            ProductMasterManager objProductMasterManager = new ProductMasterManager();

            objProductMasterManager.colGetProductMaster(argSerialNo, argMastMaterialCode, argMatGroup1Code, argClientCode, this);
        }