Ejemplo n.º 1
0
        public List <CheckListItem> GetAllChecklist(RequestBase request)
        {
            List <CheckListItem> response = new List <CheckListItem>();

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