Esempio n. 1
0
        public int Shipment(ShipmentVO vo)
        {
            ShipmentDAC dac = new ShipmentDAC();

            return(dac.Shipment(vo));
        }
        public List <Shipment> GetShipmentList() // 뷰 사용
        {
            ShipmentDAC dac = new ShipmentDAC();

            return(dac.GetShipmentList());
        }
Esempio n. 3
0
        public List <ShipSOVO> ShipmentSOList()
        {
            ShipmentDAC dac = new ShipmentDAC();

            return(dac.ShipmentSOList());
        }
        public List <ShipmentDetail> GetShipmentDetailList(string sb)  // 뷰사용
        {
            ShipmentDAC dac = new ShipmentDAC();

            return(dac.GetShipmentDetailList(sb));
        }