Esempio n. 1
0
        public bool BORDelete(int BOR_id)
        {
            BORDAC dac = new BORDAC();

            return(dac.BORDelete(BOR_id));
        }
Esempio n. 2
0
        public bool BORInsert(BORVO bor)
        {
            BORDAC dac = new BORDAC();

            return(dac.BORInsert(bor));
        }
Esempio n. 3
0
        public bool BORUpdate(BORVO bor)
        {
            BORDAC dac = new BORDAC();

            return(dac.BORUpdate(bor));
        }
Esempio n. 4
0
        public List <BORVO> SearchBorList(string product_id, int m_id, string process_name)
        {
            BORDAC dac = new BORDAC();

            return(dac.SearchBorList(product_id, m_id, process_name));
        }
Esempio n. 5
0
        public List <BORVO> GetBORList()
        {
            BORDAC dac = new BORDAC();

            return(dac.GetBORList());
        }
Esempio n. 6
0
        internal DataTable GetBaCodeBORList(string strChkBarCodes)
        {
            BORDAC dac = new BORDAC();

            return(dac.GetBaCodeBORList(strChkBarCodes));
        }
Esempio n. 7
0
        public Message SaveBOR(BOR_VO vo, bool update)
        {
            BORDAC dac = new BORDAC();

            return(dac.SaveBOR(vo, update));
        }
Esempio n. 8
0
        public List <BOR_VO> SearchBOR(string itemCode, string proc, string facility)
        {
            BORDAC dac = new BORDAC();

            return(dac.SearchBOR(itemCode, proc, facility));
        }