예제 #1
0
        public List <RSSFeedMaster> GetAllRSSFeeds(RequestBase request)
        {
            List <RSSFeedMaster> response = new List <RSSFeedMaster>();

            try
            {
                SqlSvrDAL dal = new SqlSvrDAL(request.ClientInfo);
                response = dal.GetAllRSSFeeds();
            }
            catch (Exception ex)
            {
                //LogHelper.AddLog("RSSController,GetAllRSSFeeds", ex.Message, ex.StackTrace, "HCL.Academy.Service", request.ClientInfo.emailId);
                TelemetryClient telemetry = new TelemetryClient();
                telemetry.TrackException(ex);
            }
            return(response);
        }