Ejemplo n.º 1
0
        public static List <Report_AgentAction_Day> GetAgentActionReport(string keyword, string startDate, string endDate, string clientID)
        {
            DataTable dt = AgentsDAL.BaseProvider.GetAgentActionReport(keyword, startDate, endDate, clientID);
            List <Report_AgentAction_Day> list = new List <Report_AgentAction_Day>();

            foreach (DataRow dr in dt.Rows)
            {
                Report_AgentAction_Day model = new Report_AgentAction_Day();
                model.FillData(dr);
                list.Add(model);
            }
            return(list);
        }
Ejemplo n.º 2
0
        public static List <Report_AgentAction_Day> GetAgentActionReport(string keyword, string startDate, string endDate, int type, string orderBy, int pageSize, int pageIndex, ref int totalCount, ref int pageCount)
        {
            DataTable dt = AgentsDAL.BaseProvider.GetAgentActionReportPageList(keyword, startDate, endDate, type, orderBy, pageSize, pageIndex, ref totalCount, ref pageCount);
            List <Report_AgentAction_Day> list = new List <Report_AgentAction_Day>();

            foreach (DataRow dr in dt.Rows)
            {
                Report_AgentAction_Day model = new Report_AgentAction_Day();
                model.FillData(dr);
                list.Add(model);
            }

            return(list);
        }