Пример #1
0
        public List <BaoYangOprLog> GetBaoYangOprLogByIdentityIdAndType(string identityId, string type)
        {
            var list = null as List <BaoYangOprLog>;

            try
            {
                list = dbScopeManagerTuhuLog.Execute(conn =>
                                                     DalBaoYangActivitySetting.GetBaoYangOprLogByIdentityIdAndType(conn, identityId, type));
            }
            catch (Exception ex)
            {
                Logger.Error("GetBaoYangOprLogByIdentityIdAndType", ex);
            }
            return(list);
        }