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