コード例 #1
0
 public bool InsertEligibilityResponse(EligibilityResponse eligibilityResponse)
 {
     using (var context = new tech_assessmentContext())
     {
         return(service.InsertEligibilityResponse(eligibilityResponse.TreatmentPlanId, eligibilityResponse.Response, context));
     }
 }
コード例 #2
0
        public EligibilityResponse GetEligibilityResponse(int id, tech_assessmentContext context)
        {
            //get a single Eligibility Response by id
            EligibilityResponse eligibilityResponse = context.EligibilityResponses.Find(id);

            return(eligibilityResponse);
        }
コード例 #3
0
        public ElegibilityResponseInformation GetInformationToSubmitPriorAuthorization(int id, int authorizationId, tech_assessmentContext context)
        {
            //we need both an eligability response and an authorization document to submit prior authorization
            ElegibilityResponseInformation information   = new ElegibilityResponseInformation();
            EligibilityResponse            response      = context.EligibilityResponses.Find(id);
            PriorAuthorization             authorization = context.PriorAuthorizations.Find(authorizationId);

            information.EligabilityResponse = response;
            information.authorization       = authorization.Authorization;
            return(information);
        }
コード例 #4
0
        public bool UpdateEligibilityResponse(int id, int treatmentId, string response, tech_assessmentContext context)
        {
            //make sure it exsists before attempting to edit
            EligibilityResponse eligibilityResponse = context.EligibilityResponses.Find(id);

            if (eligibilityResponse.ResponseId == id)
            {
                eligibilityResponse.TreatmentPlanId = treatmentId;
                eligibilityResponse.Response        = response;
                context.EligibilityResponses.Update(eligibilityResponse);
                var changes = context.SaveChanges();
                //if the changes are equal to 1 the change was sucessful
                return(changes == 1);
            }
            return(false);
        }
コード例 #5
0
        public bool InsertEligibilityResponse(int treatmentId, string response, tech_assessmentContext context)
        {
            EligibilityResponse eligibilityResponse = new EligibilityResponse();

            eligibilityResponse.TreatmentPlanId = treatmentId;
            eligibilityResponse.Response        = response;
            //attempt to insert new response if it fails returns false
            try
            {
                context.EligibilityResponses.Add(eligibilityResponse);
                var changes = context.SaveChanges();
                //if the changes are equal to 1 the change was sucessful
                return(changes == 1);
            }
            catch
            {
                return(false);
            }
        }
コード例 #6
0
        public bool DeleteEligibilityResponse(int id, tech_assessmentContext context)
        {
            //make sure it exsists before attempting to delete

            EligibilityResponse eligibilityResponse = new EligibilityResponse();

            eligibilityResponse = context.EligibilityResponses.Find(id);

            context.EligibilityResponses.Remove(eligibilityResponse);
            try
            {
                //attempt to commit the changes
                var changes = context.SaveChanges();
                //if the changes are equal to 1 the change was sucessful
                return(changes == 1);
            }
            catch
            {
                //if commit fails let the requester know
                return(false);
            }
        }