Ejemplo n.º 1
0
 public int GetRecordCount(string strWhere)
 {
     DAL.AgentsDal agentsDal = new DAL.AgentsDal();
     return(agentsDal.GetRecordCount(strWhere));
 }
Ejemplo n.º 2
0
 public List <Agents> GetAgentsList(String strWhere)
 {
     DAL.AgentsDal agentsDal = new DAL.AgentsDal();
     return(agentsDal.GetAgentsList(strWhere));
 }
Ejemplo n.º 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));
 }
Ejemplo n.º 4
0
 public DataTable GetAgents(String strWhere)
 {
     DAL.AgentsDal agentsDal = new DAL.AgentsDal();
     return(agentsDal.GetAgents(strWhere));
 }