示例#1
0
        /// <summary>
        /// Call the Sql query to and collect shipment locations
        /// </summary>
        /// <param name="ShipmentID">String ShipmentID</param>
        /// <returns>Boolean Value that shows this shipment packing on multiple locations or not(true/false)</returns>
        public Boolean ISShipMultiLocationExist(String ShipmentID)
        {
            cmdSageOperations command = new cmdSageOperations();

            return(command.getShipmentOnMultipleLocation(ShipmentID));
        }
示例#2
0
        /// <summary>
        /// list of Shipment id and its locations
        /// that is list of ShipmentLocationNameCustomEntity
        /// </summary>
        /// <param name="ShipmentID">String ShipmentID</param>
        /// <returns>list of Shipment id and its locations</returns>
        public List <cstShipmentLocationWise> ShipmentLocationList(String ShipmentID)
        {
            cmdSageOperations command = new cmdSageOperations();

            return(command.getLocationListOFShipment(ShipmentID));
        }
示例#3
0
        /// <summary>
        /// Get Shipping table required information from the *sage database
        /// </summary>
        /// <param name="ShippingNumber">String Shipping Number </param>
        /// <returns>List of cstShippingTbl that contints the shipping information of passed string Shipping Number</returns>
        public List <cstShippingTbl> GetShippingInfoFromSage(String ShippingNumber, string flag)
        {
            cmdSageOperations command = new cmdSageOperations();

            return(command.getShippingInfo(ShippingNumber, flag));
        }