void NotKaydet(object sender, EventArgs e)
        {
            var gelenNot = (Notlar)BindingContext;

            if (gelenNot == null)
            {
                // Yeni Kaydet
                Notlar.NotuKaydet(notlar, notGirisi.Text);
            }
            else
            {
                //Güncelle
                Notlar.NotuKaydet(gelenNot, notGirisi.Text);
            }
        }
 public static void Kaydet(Notlar not)
 {
     Notlar.NotuKaydet(not);
 }