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

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

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

            return(dac.BORUpdate(bor));
        }
Ejemplo 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));
        }
Ejemplo n.º 5
0
        public List <BORVO> GetBORList()
        {
            BORDAC dac = new BORDAC();

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

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

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

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