예제 #1
0
 public void CopyFrom(ProductBase rhs)
 {
     ID             = rhs.ID;
     Barcode        = rhs.Barcode;
     Name           = rhs.Name;
     Description    = rhs.Description;
     RetailPrice    = rhs.RetailPrice;
     WholeSalePrice = rhs.WholeSalePrice;
 }
예제 #2
0
 public ProductBase(ProductBase rhs)
 {
     CopyFrom(rhs);
 }