Example #1
0
 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));
 }
Example #2
0
 public static bool BulkCopyToSQLServer(List <Employee> employees)
 {
     return(DataController.BulkCopyToSQLServer(employees));
 }
Example #3
0
 public static async Task <List <Employee> > GetEmployeeGridDataAsync(GridPagination pagination, Ref <int> totalRecords)
 {
     return(await DataController.GetEmployeeGridDataAsync(pagination, totalRecords));
 }
Example #4
0
 // GetEmployeeGridFilterListAsync
 public static async Task <List <EmployeeGridFilterModel> > GetEmployeeGridFilterListAsync(string where)
 {
     return(await DataController.GetEmployeeGridFilterListAsync(where));
 }
Example #5
0
 public static List <Artist> GetArtists()
 {
     return(DataController.GetArtists());
 }
Example #6
0
 public static List <Track> GetTracksUsingRawSQL()
 {
     return(DataController.GetTracksUsingRawSQL());
 }