Exemplo n.º 1
0
        public void LoadStoredProcedures(DateTime date)
        {
            EntityBusiness edata = new EntityBusiness();
            var splist = edata.GetDailyStoredProcedures(date);
            dgvSP.DataSource = splist;

            var ms = AppTimeConfiguration.MainServer.ServerID;
            foreach (DataGridViewRow rw in dgvSP.Rows)
            {
                rw.Cells[5].Value = ms;
                rw.Cells[6].Value = ms;
            }
        }
Exemplo n.º 2
0
 void LoadStoredProcedures(DateTime date)
 {
     EntityBusiness edata = new EntityBusiness();
     var splist = edata.GetDailyStoredProcedures(date);
     dgvSP.DataSource = splist;
 }