Hi i've created a class which name is testclass.cls
Inside of testclass.cls i created this code
public void Insert(string materialSize, string KgPermetre, string PricePerCut, string MaterialType, string LineColour)
{
SqlConnection objcon = new SqlConnection(Cls_Connection.srConnectionString);
objcon.Open();
SqlCommand cmd = new SqlCommand("sp_MaterialSize", objcon) { CommandType = CommandType.StoredProcedure };
cmd.Parameters.AddWithValue("action", "Insert");
cmd.Parameters.AddWithValue("MaterialSizeId", "");
cmd.Parameters.AddWithValue("MaterialSize", materialSize);
cmd.Parameters.AddWithValue("KgPerMetre", KgPermetre);
cmd.Parameters.AddWithValue("PricePerCut", PricePerCut);
cmd.Parameters.AddWithValue("MaterialType", MaterialType);
cmd.Parameters.AddWithValue("LineColour", LineColour);
cmd.ExecuteNonQuery();
objcon.Close();
return false;
}
How can i call this calss into my winform i try
testclassInsert(textBox1.Text, textBox2.Text, textBox3.Text, textBox4.Text, textBox5.Text);
but i got error please help.