public OrderShipmentLine(ShipmentModel model) { if (model != null) { this.Id = model.Id; this.LineId = model.LineId; this.LocatorId = model.LocatorId; this.LotNoId = model.LotNoId; this.SerialNo = model.SerialNo; this.ShipedQuantity = model.Quantity; } }
public OrderShipmentModel(ShipmentModel model) { if (model != null) { this.Id = model.Id; this.DeliveryDate = model.DeliveryDate; this.OrderId = model.OrderId; this.WarehouseId = model.WarehouseId; this.CompanyId = model.CompanyId; this.DeliveryNo = model.DeliveryNo; } }