private void shtoBtn_Click(object sender, EventArgs e)
        {
            kf.f.id      = (int)comboBoxFurnitori.SelectedValue;
            kf.date      = dateTimePickerData.Value;
            kf.nr_fature = textBoxNrFature.Text;

            bool success = kf.shtoKokeFurnizimi(kf);

            if (success)
            {
                MessageBox.Show("Shtimi i kokes se furnizimit u krye me sukses!");
                this.Clear();
                DataTable kfData = kf.SelectKokeFurnizimi();
                dataGridViewKokeFurnizimiList.DataSource = kfData;
            }
            else
            {
                MessageBox.Show("Shtimi i  kokes se furnizimit deshtoi!");
            }
        }