Example #1
0
 public Seller(string name, string taxnumber)
 {
     Name          = name;
     TaxNumber     = taxnumber;
     ContactPerson = name;
     ProductList   = new ListNotSorted <Product>();
 }
 public Buyer(string name, string taxnumber)
 {
     Name          = name;
     TaxNumber     = taxnumber;
     ContactPerson = name;
     Evaluation    = ProductPcs;
     ProductList   = new ListNotSorted <Product>();
 }