public Order UpdateShippingProgress(ShippingProgress shippingProgress) { if (Shipping.IsNull()) { throw new NotFoundException($"shipping object not found for order id:-{Id}".MakeThisRedable()); } return(this); }
public Shipping UpdateShippingProgress(ShippingProgress shippingProgress) { ShippingProgress = shippingProgress; return(this); }