using System;
public class Inventory
{
private string name;
private int code;
private int rate;
private int stock;
private int lead;
public string Name
get
return name;
}
set
name = value;
public int Code
return code;
code = value;
public int Rate
return rate;
rate = value;
public int Stock
return stock;
stock = value;
public int Lead
return lead;
lead = value;
public Inventory(string name, int code, int rate, int stock, int lead)
this.name = name;
this.code = code;
this.rate = rate;
this.stock = stock;
this.lead = lead;