private void saveToolStripButton_Click(object sender, EventArgs e)
 {
     if (txtDescription.Text.Length > 1)
     {
         WS.AddOutlet(Outlet, fCompanyID, txtDescription.Text);
         LoadData();
     }
     else
     {
         MessageBox.Show("The Name is not valid");
     }
 }