private void search_Click(object sender, EventArgs e) { Employee theEmployee = new Employee(); theEmployee = ApiFunctions.SearchEmployee(Convert.ToInt32(ID.Text)); CleanAllText(); lableShow.Text = theEmployee.ID + " " + theEmployee.name + " " + theEmployee.sex; }