コード例 #1
0
        public static List<CTScEventAndFollowUpLog> GetEventFollowUpLogs(int pSubCampaignId, int pAccountId)
        {
            List<CTScEventAndFollowUpLog> _lstData = new List<CTScEventAndFollowUpLog>();
            using (BrightPlatformEntities _eftDbContext = new BrightPlatformEntities(UserSession.EntityConnection)) {
                _lstData = _eftDbContext.FIScGetEventAndFollowUpLogs(pSubCampaignId, pAccountId, UserSession.CurrentUser.UserId).ToList();
            }

            return _lstData;
        }