private void normalRandevuListeleButon_Click(object sender, EventArgs e)
        {
            RandevuArama ara   = new RandevuArama();
            DataTable    table = ara.kullaniciRandevulariniGetir(kullaniciID);

            randevular = table;
            table.Columns["randevuID"].ColumnMapping = MappingType.Hidden;
            normalRandevularimDataGrid.DataSource    = table;
        }
Esempio n. 2
0
        private void randevuListeleButon_Click(object sender, EventArgs e)
        {
            RandevuArama arama     = new RandevuArama();
            DataTable    dataTable = new DataTable();

            dataTable = arama.randevulariGetir(isyeriIDGetir());
            dataTable.Columns["randevuID"].ColumnMapping = MappingType.Hidden;
            randevular = dataTable;
            randevularBolumuDataGrid.DataSource = dataTable;

            MessageBox.Show("Randevular listelendi");
        }