Пример #1
0
 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;
     }
 }
Пример #2
0
 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;
     }
 }
Пример #3
0
 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;
     }
 }
Пример #4
0
 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;
     }
 }