示例#1
0
 public int GetRecordCount(string strWhere)
 {
     DAL.AgentsDal agentsDal = new DAL.AgentsDal();
     return(agentsDal.GetRecordCount(strWhere));
 }
示例#2
0
 public List <Agents> GetAgentsList(String strWhere)
 {
     DAL.AgentsDal agentsDal = new DAL.AgentsDal();
     return(agentsDal.GetAgentsList(strWhere));
 }
示例#3
0
 public DataTable GetListByPage(string strWhere, string orderby, int startIndex, int endIndex)
 {
     DAL.AgentsDal agentsDal = new DAL.AgentsDal();
     return(agentsDal.GetListByPage(strWhere, orderby, startIndex, endIndex));
 }
示例#4
0
 public DataTable GetAgents(String strWhere)
 {
     DAL.AgentsDal agentsDal = new DAL.AgentsDal();
     return(agentsDal.GetAgents(strWhere));
 }