Ejemplo n.º 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);
 }
Ejemplo n.º 2
0
 public DataTable GetAlbumsByCateHomeAll(string strCate)
 {
     string restr = strCate.Remove(strCate.LastIndexOf(",")).Replace(",", "','");
     AlbumsDAO albumsDAO = new AlbumsDAO();
     return albumsDAO.GetAlbumsByCateHomeAll(restr);
 }