public static List <Track> GetTracks(int pageSize, int currentPage, string sortColumn, string sortOrder, string whereCondition, ref int totalCount) { return(DataController.GetTracks(pageSize, currentPage, sortColumn, sortOrder, whereCondition, ref totalCount)); }
public static bool BulkCopyToSQLServer(List <Employee> employees) { return(DataController.BulkCopyToSQLServer(employees)); }
public static async Task <List <Employee> > GetEmployeeGridDataAsync(GridPagination pagination, Ref <int> totalRecords) { return(await DataController.GetEmployeeGridDataAsync(pagination, totalRecords)); }
// GetEmployeeGridFilterListAsync public static async Task <List <EmployeeGridFilterModel> > GetEmployeeGridFilterListAsync(string where) { return(await DataController.GetEmployeeGridFilterListAsync(where)); }
public static List <Artist> GetArtists() { return(DataController.GetArtists()); }
public static List <Track> GetTracksUsingRawSQL() { return(DataController.GetTracksUsingRawSQL()); }