Example #1
0
 public DataTable GetAlbumsByCateHomeAll(int n, string strCate, string approval)
 {
     string restr = strCate.Remove(strCate.LastIndexOf(",")).Replace(",", "','");
     AlbumsDAO albumsDAO = new AlbumsDAO();
     return albumsDAO.GetAlbumsByCateHomeAll(n, restr, approval);
 }
Example #2
0
 public DataTable GetAlbumsByCateHomeAll(string strCate)
 {
     string restr = strCate.Remove(strCate.LastIndexOf(",")).Replace(",", "','");
     AlbumsDAO albumsDAO = new AlbumsDAO();
     return albumsDAO.GetAlbumsByCateHomeAll(restr);
 }