Exemplo n.º 1
0
        public AddPCMToCohortPatientViewDataResponse Put(AddPCMToCohortPatientViewDataRequest request)
        {
            var response = new AddPCMToCohortPatientViewDataResponse();

            try
            {
                if (string.IsNullOrEmpty(request.UserId))
                {
                    throw new UnauthorizedAccessException("PatientDD:AddPCMToCohortPatientViewDataResponse()::Unauthorized Access");
                }

                var managerResponse = PatientManager.AddPcmToCohortPatientView(request);
                response.IsSuccessful = managerResponse.IsSuccessful;
                response.Version      = request.Version;
            }
            catch (Exception ex)
            {
                response.IsSuccessful = false;
                CommonFormatterUtil.FormatExceptionResponse(response, base.Response, ex);

                var aseProcessID = ConfigurationManager.AppSettings.Get("ASEProcessID") ?? "0";
                Helpers.LogException(int.Parse(aseProcessID), ex);
            }
            return(response);
        }
Exemplo n.º 2
0
        public AddPCMToCohortPatientViewDataResponse AddPcmToCohortPatientView(AddPCMToCohortPatientViewDataRequest request)
        {
            var response = new AddPCMToCohortPatientViewDataResponse();

            try
            {
                var repo         = Factory.GetRepository(request, RepositoryType.CohortPatientView);
                var isSuccessful = repo.AddPCMToPatientCohortView(request);

                response.IsSuccessful = isSuccessful;
            }
            catch (Exception ex)
            {
                throw ex;
            }
            return(response);
        }