コード例 #1
0
        public Order UpdateShippingProgress(ShippingProgress shippingProgress)
        {
            if (Shipping.IsNull())
            {
                throw new NotFoundException($"shipping object not found for order id:-{Id}".MakeThisRedable());
            }

            return(this);
        }
コード例 #2
0
 public Shipping UpdateShippingProgress(ShippingProgress shippingProgress)
 {
     ShippingProgress = shippingProgress;
     return(this);
 }