private void btnSave_Click(object sender, EventArgs e)
        {
            Customer           Cust = new Customer();
            CustomersFunctions CF   = new CustomersFunctions();

            if (textBox1.Text == string.Empty || textBox1.Text == null)
            {
                MessageBox.Show("Το ID πεδίο δεν μπορεί να είναι κενό");
                return;
            }

            if (textBox2.Text == string.Empty || textBox1.Text == null)
            {
                MessageBox.Show("Το πεδίο Όνομα δεν μπορεί να είναι κενό");
                return;
            }

            if (textBox3.Text == string.Empty || textBox1.Text == null)
            {
                MessageBox.Show("Το πεδίο Επώνυμο δεν μπορεί να είναι κενό");
                return;
            }
            Cust.ID        = Convert.ToInt32(textBox1.Text);
            Cust.FirstName = textBox2.Text;
            Cust.LastName  = textBox3.Text;
            Cust.Telephone = textBox4.Text;
            Cust.Address   = textBox5.Text;
            CF.Add(Cust.ToString());

            this.FindForm().Dispose();
        }