Exemplo n.º 1
0
 /// <summary>
 /// Default constructor
 /// </summary>
 public Supplier()
 {
     SupplierID = 0;
     CompanyName = "";
     supply = new Supply();
 }
Exemplo n.º 2
0
 /// <summary>
 /// Default constructor
 /// </summary>
 public Product()
 {
     ProductID = 0;
     ProductName = "";
     Discontinued = true;
     category = new Category();
     supply = new Supply();
 }