public void TestInsertPatientSuccessful() { var patient = new PatientDataModel(); var patientLogic = new PatientBusinessLogic(_repo); patientLogic.InsertPatient(patient); }
public void TestAllotBedToPatient() { var patientLogic = new PatientBusinessLogic(_repo); var bed = new BedAllotmentModel(); var response = patientLogic.AllotBedToPatient(bed); Assert.NotNull(response); }
public void TestFreeTheBed() { var patientLogic = new PatientBusinessLogic(_repo); patientLogic.FreeTheBed(1); }
public void TestFetchPatientInfoFromBedId() { var patientLogic = new PatientBusinessLogic(_repo); patientLogic.FetchPatientInfoFromBedId("1A1"); }