예제 #1
0
 public static List <Customer> GetCustomers(int page = 1, int pageSize = 2)
 {
     return(dBLayer.FindAllEnties <Customer>(page, pageSize));
 }
예제 #2
0
 public static List <Agent> GetAgents(int page, int pageSize)
 {
     return(dBLayer.FindAllEnties <Agent>(page, pageSize));
 }