Exemple #1
0
 public IActionResult MedicalHistory(mp_phc_health_history health_History, mp_phc_medical_history medical_History, mp_phc_mental_status mental_Status,
                                     mp_phc_social_history social_History, mp_phc_system_review system_Review)
 {
     //save all the information
     _evaluationService.AddHealthHistory(health_History);
     _evaluationService.AddMedicaHistory(medical_History);
     _evaluationService.AddMentalStatus(mental_Status);
     _evaluationService.AddSocialHistory(social_History);
     _evaluationService.AddSystemReview(system_Review);
     return(View());
 }
Exemple #2
0
 public int AddMedicaHistory(mp_phc_medical_history medical)
 {
     _context.Add(medical);
     return(_context.SaveChanges());
 }