Exemplo n.º 1
0
 public Seller(string name, string taxnumber)
 {
     Name          = name;
     TaxNumber     = taxnumber;
     ContactPerson = name;
     ProductList   = new ListNotSorted <Product>();
 }
Exemplo n.º 2
0
 public Buyer(string name, string taxnumber)
 {
     Name          = name;
     TaxNumber     = taxnumber;
     ContactPerson = name;
     Evaluation    = ProductPcs;
     ProductList   = new ListNotSorted <Product>();
 }