Ejemplo n.º 1
0
        /// <summary>
        /// 접속정보 조회
        /// </summary>
        public DataTable GetConnectLog(string dept_ref_id, string emp_name, string start_dt, string end_dt, int iFirstRow, int iLastRow)
        {
            MicroBSC.Integration.CTL.Dac.Dac_Ctl_Common dacCtlCommon = new MicroBSC.Integration.CTL.Dac.Dac_Ctl_Common();
            DataTable DT = new DataTable();

            DT = dacCtlCommon.SelectConnectLog(dept_ref_id, emp_name, start_dt, end_dt, iFirstRow, iLastRow);

            return(DT);
        }