I have a simple program I have to make here but I'm not quite sure how to start it. I have my class file already defined as shown below. What I need to do is to make a Windows Form Application (as shown below in the picture.) I need to enter the information into the textboxes and then output it into the richtextbox1 at the bottom. And I don't have it shown below, but in the Windows Form, how do you call a method if I had it in this class file?

class Telephone
{
private string manufacturer;
private string model;
private bool isConnected = false;
private string lastNumberDialed;
private string phoneNumber;
public Telephone()
{
}
public Telephone(string manufacturer, string model, string phoneNumber)
{
Manufacturer = manufacturer;
Model = model;
PhoneNumber = phoneNumber;
}
public string Manufacturer
{
get { return manufacturer; }
set { manufacturer = value; }
}
public string Model
{
get { return model; }
set { model = value; }
}
public string PhoneNumber
{
get { return phoneNumber; }
set { phoneNumber = value; }
}
new public string ToString()
{
return "Manufacturer: " + manufacturer;
}
}
And here's the design code:
public partial class TelephoneEntryForm : Form
{
public TelephoneEntryForm()
{
InitializeComponent();
}
private void btnEnter_Click(object sender, EventArgs e)
{
}
private void btnShowPhones_Click(object sender, EventArgs e)
{
}
private void btnDial_Click(object sender, EventArgs e)
{
}
private void btnRedial_Click(object sender, EventArgs e)
{
}
private void btnHangUp_Click(object sender, EventArgs e)
{
}
}