/// <summary>
 /// Initializes a new instance of the <see cref="T:System.Object"/> class.
 /// </summary>
 public ProductEntry(ProductEntryType type, int productId, string productDescription, string productName, double productPrice)
 {
     Type = type;
     ProductDescription = productDescription;
     ProductId = productId;
     ProductName = productName;
 }
Пример #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="T:System.Object"/> class.
 /// </summary>
 public ProductEntry(ProductEntryType type, int productId, string productDescription, string productName, double productPrice)
 {
     Type = type;
     ProductDescription = productDescription;
     ProductId          = productId;
     ProductName        = productName;
 }