Click here to Skip to main content
15,884,629 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
how to access dialog box (Generate) during build class to generate contractors?

C#
public class Cpmuter
{
    public int id { get;set; }
    public string name {get;set;}
    public string type { get; set; }
    public string processor { get; set; }
    public string ram { get; set; }
    public string price { get; set; }
    public string image { get; set; }

    public Cpmuter(int id,string name,string type,string processor,string ram,string price,string image)
    {
        this.id = id;
        this.name = name;
        this.type = type;
        this.processor = processor;
        this.ram = ram;
        this.price = price;
        this.image = image;
    }

}
Posted
Updated 7-Sep-14 5:40am
v2
Comments
kbrandwijk 7-Sep-14 15:02pm    
I have no idea what you're asking. Can you please explain? You want to generate something based on this class definition? What dialog box do you want to access?
mhassan083 8-Sep-14 1:09am    
dialog box called Generate ...to generate contractors...how to open it? to select contractors need to generate it?

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900