Ejemplo n.º 1
0
 public static List <Customer> GetCustomersByAgentId(int agentId, int page, int pageSize)
 {
     return(dBLayer.FindAllEntiesByQuery <Customer>(Query.EQ("agent_id", agentId), page, pageSize));
 }