public void InsertPatientUpdateHistory()
        {
            DLModel.PatientID   = 1;
            DLModel.Description = "Test";
            int patientHistoryid = _patientHistoryImplBL.InsertPatientUpdateHistory(DLModel);

            Assert.IsTrue(true, "Unable to find");
        }
Exemple #2
0
        public ActionResult Update(PatientDetailViewModel viewmodel)
        {
            int id = _patientBL.UpdatePatient(Mapper.Map <LMGEDI.Core.Data.Model.Patient>(viewmodel.patient));

            if (viewmodel.patientHistory.PatientAccountHistory != viewmodel.patient.PatientAccount)
            {
                viewmodel.patientHistory.Description += "PatientAccount:" + viewmodel.patientHistory.PatientAccountHistory + "||";
            }

            if (viewmodel.patientHistory.PatientFirstHistory != viewmodel.patient.PatientFirst)
            {
                viewmodel.patientHistory.Description += "PatientFirst:" + viewmodel.patientHistory.PatientFirstHistory + "||";
            }

            if (viewmodel.patientHistory.PatientLastHistory != viewmodel.patient.PatientLast)
            {
                viewmodel.patientHistory.Description += "PatientLast:" + viewmodel.patientHistory.PatientLastHistory + "||";
            }

            if (viewmodel.patientHistory.PatientGenderHistory.Trim() != viewmodel.patient.PatientGender)
            {
                viewmodel.patientHistory.Description += "PatientGender:" + viewmodel.patientHistory.PatientGenderHistory.Trim() + "||";
            }

            if (Convert.ToDateTime(viewmodel.patientHistory.PatientDOBHistory).ToString("MM/dd/yyyy") != viewmodel.patient.PatientDOB)
            {
                viewmodel.patientHistory.Description += "PatientDOB:" + Convert.ToDateTime(viewmodel.patientHistory.PatientDOBHistory).ToString("MM/dd/yyyy") + "||";
            }

            if (viewmodel.patientHistory.PatientClaimHistory != viewmodel.patient.PatientClaim)
            {
                viewmodel.patientHistory.Description += "PatientClaim:" + viewmodel.patientHistory.PatientClaimHistory + "||";
            }

            if (viewmodel.patientHistory.PatientSSNHistory != viewmodel.patient.PatientSSN)
            {
                viewmodel.patientHistory.Description += "PatientSSN:" + viewmodel.patientHistory.PatientSSNHistory + "||";
            }

            if (viewmodel.patientHistory.PatientWCABHistory != viewmodel.patient.PatientWCAB)
            {
                viewmodel.patientHistory.Description += "PatientWCAB:" + viewmodel.patientHistory.PatientWCABHistory + "||";
            }

            if (viewmodel.patientHistory.PatientEmployerHistory != viewmodel.patient.PatientEmployer)
            {
                viewmodel.patientHistory.Description += "PatientEmployer:" + viewmodel.patientHistory.PatientEmployerHistory + "||";
            }

            if (viewmodel.patientHistory.PatientInsuranceHistory != viewmodel.patient.PatientInsurance)
            {
                viewmodel.patientHistory.Description += "PatientInsurance:" + viewmodel.patientHistory.PatientInsuranceHistory + "||";
            }
            if (viewmodel.patientHistory.Description != null)
            {
                viewmodel.patientHistory.Description = viewmodel.patientHistory.Description.Substring(0, viewmodel.patientHistory.Description.LastIndexOf("||"));
                int patientHistoryid = _patientHistoryBL.InsertPatientUpdateHistory(Mapper.Map <LMGEDI.Core.Data.Model.PatientHistory>(viewmodel.patientHistory));
            }

            return(Json("Patient Update Successfully"));
        }