示例#1
0
        public List <BOMVO> GetBOMInfo()
        {
            BOMDAC dac = new BOMDAC();

            return(dac.GetBOMInfo());
        }
示例#2
0
        public void DeleteProduct(ProductVO Pitem)
        {
            BOMDAC dac = new BOMDAC();

            dac.DeleteProduct(Pitem);
        }
示例#3
0
        public List <ProductVO> GetImage(string code)
        {
            BOMDAC dac = new BOMDAC();

            return(dac.GetImage(code));
        }
示例#4
0
        public DataTable SearchBOM(string day, string name, string yn)
        {
            BOMDAC dac = new BOMDAC();

            return(dac.SearchBOM(day, name, yn));
        }
示例#5
0
        public void UpdateProduct(ProductVO Pitem, List <BOMVO> citemList, int count)
        {
            BOMDAC dac = new BOMDAC();

            dac.UpdateProduct(Pitem, citemList, count);
        }
示例#6
0
        public List <BOMVO> GetBOMWhereInfo(int level, string prodName, string prodType)
        {
            BOMDAC dac = new BOMDAC();

            return(dac.GetBOMWhereInfo(level, prodName, prodType));
        }
示例#7
0
        public bool Update(BOMVO vo)
        {
            BOMDAC dac = new BOMDAC();

            return(dac.Update(vo));
        }
示例#8
0
        public List <BOMVO> GetAllCombination(string code)
        {
            BOMDAC dac = new BOMDAC();

            return(dac.GetAllCombination(code));
        }
示例#9
0
        public List <BOMVO> GetAllCombinationReverse(string type)
        {
            BOMDAC dac = new BOMDAC();

            return(dac.GetAllCombinationReverse(type));
        }
示例#10
0
        public List <ProductVO> GetAllProduct()
        {
            BOMDAC dac = new BOMDAC();

            return(dac.GetAllProduct());
        }
示例#11
0
        public List <ProductVO> GetProductList(string type)
        {
            BOMDAC dac = new BOMDAC();

            return(dac.GetProductList(type));
        }
示例#12
0
        internal BOM_VO GetBOM(int code)
        {
            BOMDAC dac = new BOMDAC();

            return(dac.GetBOM(code));
        }
示例#13
0
        public bool DeleteBOM(StringBuilder code)
        {
            BOMDAC dac = new BOMDAC();

            return(dac.DeleteBOM(code));
        }
示例#14
0
        public DataTable SelectBOM()
        {
            BOMDAC dac = new BOMDAC();

            return(dac.SelectBOM());
        }
示例#15
0
        public List <BOMVO> GetBOMPreView(int bomID)
        {
            BOMDAC dac = new BOMDAC();

            return(dac.GetBOMPreView(bomID));
        }
示例#16
0
        public List <ComboItemVO> GetComboProductCategory()
        {
            BOMDAC dac = new BOMDAC();

            return(dac.GetComboProductCategory());
        }
示例#17
0
        public List <BOMVO> GetBOMCBProdName()
        {
            BOMDAC dac = new BOMDAC();

            return(dac.GetBOMCBProdName());
        }
示例#18
0
        public List <ComboItemVO> GetComboResourceCategory(string div)
        {
            BOMDAC dac = new BOMDAC();

            return(dac.GetComboResourceCategory(div));
        }
示例#19
0
        public bool Insert(BOMVO vo)
        {
            BOMDAC dac = new BOMDAC();

            return(dac.Insert(vo));
        }
示例#20
0
        public void InsertProduct(ProductVO Pitem, List <BOMVO> citemList, int count)
        {
            BOMDAC dac = new BOMDAC();

            dac.InsertProduct(Pitem, citemList, count);
        }
示例#21
0
        public bool Delete(int BOMID)
        {
            BOMDAC dac = new BOMDAC();

            return(dac.Delete(BOMID));
        }
示例#22
0
        public string SaveBOM(BOM_VO vo)
        {
            BOMDAC dac = new BOMDAC();

            return(dac.SaveBOM(vo));
        }