Ejemplo n.º 1
0
 public ActionResult AddPatient(AddPatientModel patient)
 {
     if (ModelState.IsValid)
     {             //clalling BLL function
         PatientLogic.addPatient(patient);
     }
     return(View());
 }