Esempio n. 1
0
 public OrderShipment(
     MFulfillment_Shipment mShipment,
     IApplicationLocale locale)
 {
     MShipment = mShipment;
     Locale    = locale;
 }
Esempio n. 2
0
            public static AShipment_Shipment AShipment_Shipment(
                MFulfillment_Shipment mShipment,
                MFulfillment_ShipmentTransactionSummaryList mTransactions,
                MFulfillment_ShipmentEventLogSummaryList mEvents,
                IList <MFulfillment_Fulfillable> mFulfillables,
                bool allowEdit)
            {
                var shipment = new AShipment_Shipment()
                {
                    MShipment     = mShipment,
                    MTransactions = mTransactions,
                    MEvents       = mEvents,
                    MFulfillables = mFulfillables,
                    AllowEdit     = allowEdit
                };

                return(shipment);
            }