/// <summary> /// 根据条件获取列表 GetList(string strWhere,string orderBy=null) /// </summary> /// <param name="strWhere">strWhere</param> /// <param name="orderBy">orderBy</param> /// <returns>返回List(AlbumInfo)类型数据,未查询到数据则返回null</returns> public List <AlbumInfo> GetList(string strWhere, string orderBy = null) { return(_album.GetList(strWhere, orderBy)); }