public List <BaoYangProductPriorityModel> GetBaoYangProductSeriesByCategory(string category)
        {
            var result = new List <BaoYangProductPriorityModel>();

            try
            {
                result = TuhuProductcatalogReadDbScopeManager.Execute(conn => DalProduct.GetBaoYangProductSeriesByCategory(conn, category)).ToList();
            }
            catch (Exception ex)
            {
                logger.Error(ex.Message, ex);
            }
            return(result);
        }