public class ProductList
{
//Paramaterized constructor
public ProductList(string ItemID, string Descr, double OnHandQty)
{
this.ItemID = ItemID;
this.Descr = Descr;
this.OnHandQty = OnHandQty;
}
//Default constructor
public ProductList()
{
}
public string ItemID
{
get;
set;
}
public string Descr
{
get;
set;
}
public double OnHandQty
{
get;
set;
}
}
|