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