コード例 #1
0
ファイル: ShipmentService.cs プロジェクト: LEE-JiHong/Team3
        public DataTable GetSalesCompleteStatus(ShipmentClosingVO vo)
        {
            ShipmentDac dac = new ShipmentDac();

            return(dac.GetSalesCompleteStatus(vo));
        }
コード例 #2
0
ファイル: ShipmentService.cs プロジェクト: LEE-JiHong/Team3
        public int GetPresentPrice(int product_id)
        {
            ShipmentDac dac = new ShipmentDac();

            return(dac.GetPresentPrice(product_id));
        }
コード例 #3
0
ファイル: ShipmentService.cs プロジェクト: LEE-JiHong/Team3
        public bool EndProcessing(List <ShipmentOutVO> list)
        {
            ShipmentDac dac = new ShipmentDac();

            return(dac.EndProcessing(list));
        }
コード例 #4
0
ファイル: ShipmentService.cs プロジェクト: LEE-JiHong/Team3
        public bool TransferProcessing(List <ShipmentVO> list)
        {
            ShipmentDac dac = new ShipmentDac();

            return(dac.TransferProcessing(list));
        }
コード例 #5
0
ファイル: ShipmentService.cs プロジェクト: LEE-JiHong/Team3
        public List <ShipmentOutVO> GetClientOrder()
        {
            ShipmentDac dac = new ShipmentDac();

            return(dac.GetClientOrder());
        }
コード例 #6
0
ファイル: ShipmentService.cs プロジェクト: LEE-JiHong/Team3
        public List <ShipmentVO> GetInventoryStatusByOrder(InventoryOrderMgtVO vo)
        {
            ShipmentDac dac = new ShipmentDac();

            return(dac.GetInventoryStatusByOrder(vo));
        }