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