Esempio n. 1
0
        public string InsertStockistPoolAllocation(FormCollection col)
        {
            string      result  = string.Empty;
            BL_Customer objCust = new BL_Customer();

            result = objCust.InsertStockistPoolAllocation(_objcurrentInfo.GetCompanyCode(), col["stockist"].ToString(), col["product"].ToString(), col["territory"].ToString(), col["from"].ToString(), col["to"].ToString(), Convert.ToInt16(col["status"]), col["stockID"].ToString(), col["baseRegion"].ToString(), _objcurrentInfo.GetRegionCode());
            return(result);
        }