Exemplo n.º 1
0
 public static void Copy(IGenericAddressableSale source, IGenericAddressableSale target)
 {
     if (source != null && target != null)
     {
         target.BillToAddress  = source.BillToAddress;
         target.ShipToAddress  = source.ShipToAddress;
         target.ShippingMethod = source.ShippingMethod;
         target.DeliveryDate   = source.DeliveryDate;
     }
 }
Exemplo n.º 2
0
 public void Copy(IGenericAddressableSale target)
 {
     IGenericAddressableSaleLogic.Copy(this, target);
 }