Ejemplo n.º 1
0
        public List <BOMVO> GetBOMInfo()
        {
            BOMDAC dac = new BOMDAC();

            return(dac.GetBOMInfo());
        }
Ejemplo n.º 2
0
        public void DeleteProduct(ProductVO Pitem)
        {
            BOMDAC dac = new BOMDAC();

            dac.DeleteProduct(Pitem);
        }
Ejemplo n.º 3
0
        public List <ProductVO> GetImage(string code)
        {
            BOMDAC dac = new BOMDAC();

            return(dac.GetImage(code));
        }
Ejemplo n.º 4
0
        public DataTable SearchBOM(string day, string name, string yn)
        {
            BOMDAC dac = new BOMDAC();

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

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

            return(dac.GetBOMWhereInfo(level, prodName, prodType));
        }
Ejemplo n.º 7
0
        public bool Update(BOMVO vo)
        {
            BOMDAC dac = new BOMDAC();

            return(dac.Update(vo));
        }
Ejemplo n.º 8
0
        public List <BOMVO> GetAllCombination(string code)
        {
            BOMDAC dac = new BOMDAC();

            return(dac.GetAllCombination(code));
        }
Ejemplo n.º 9
0
        public List <BOMVO> GetAllCombinationReverse(string type)
        {
            BOMDAC dac = new BOMDAC();

            return(dac.GetAllCombinationReverse(type));
        }
Ejemplo n.º 10
0
        public List <ProductVO> GetAllProduct()
        {
            BOMDAC dac = new BOMDAC();

            return(dac.GetAllProduct());
        }
Ejemplo n.º 11
0
        public List <ProductVO> GetProductList(string type)
        {
            BOMDAC dac = new BOMDAC();

            return(dac.GetProductList(type));
        }
Ejemplo n.º 12
0
        internal BOM_VO GetBOM(int code)
        {
            BOMDAC dac = new BOMDAC();

            return(dac.GetBOM(code));
        }
Ejemplo n.º 13
0
        public bool DeleteBOM(StringBuilder code)
        {
            BOMDAC dac = new BOMDAC();

            return(dac.DeleteBOM(code));
        }
Ejemplo n.º 14
0
        public DataTable SelectBOM()
        {
            BOMDAC dac = new BOMDAC();

            return(dac.SelectBOM());
        }
Ejemplo n.º 15
0
        public List <BOMVO> GetBOMPreView(int bomID)
        {
            BOMDAC dac = new BOMDAC();

            return(dac.GetBOMPreView(bomID));
        }
Ejemplo n.º 16
0
        public List <ComboItemVO> GetComboProductCategory()
        {
            BOMDAC dac = new BOMDAC();

            return(dac.GetComboProductCategory());
        }
Ejemplo n.º 17
0
        public List <BOMVO> GetBOMCBProdName()
        {
            BOMDAC dac = new BOMDAC();

            return(dac.GetBOMCBProdName());
        }
Ejemplo n.º 18
0
        public List <ComboItemVO> GetComboResourceCategory(string div)
        {
            BOMDAC dac = new BOMDAC();

            return(dac.GetComboResourceCategory(div));
        }
Ejemplo n.º 19
0
        public bool Insert(BOMVO vo)
        {
            BOMDAC dac = new BOMDAC();

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

            dac.InsertProduct(Pitem, citemList, count);
        }
Ejemplo n.º 21
0
        public bool Delete(int BOMID)
        {
            BOMDAC dac = new BOMDAC();

            return(dac.Delete(BOMID));
        }
Ejemplo n.º 22
0
        public string SaveBOM(BOM_VO vo)
        {
            BOMDAC dac = new BOMDAC();

            return(dac.SaveBOM(vo));
        }