Exemplo n.º 1
0
        void TumSubeGridVerileri() //YÖNETİCİ İÇİN TÜM ŞUBELER
        {
            TumSubelerGridView.DataSource = null;
            DataTable dt = BLL_Sube.TumSubeler();

            TumSubelerGridView.DataSource = dt;
            TumSubelerGridView.Refresh();
            TumSubelerGridView.ClearSelection();
        }
Exemplo n.º 2
0
        //-----------------------------------------------------------------------------------------
        // İLETİŞİM SAYFASI

        void TumSubeler() // FORM LOAD İÇİN
        {
            TumSubelerGridView.DataSource = null;
            DataTable dt = BLL_Sube.TumSubeler();

            dt.Columns.Remove("Eposta");
            dt.Columns.Remove("Tarih");
            TumSubelerGridView.DataSource = dt;
            TumSubelerGridView.ClearSelection();
        }