public void TestInsertPatientSuccessful()
        {
            var patient      = new PatientDataModel();
            var patientLogic = new PatientBusinessLogic(_repo);

            patientLogic.InsertPatient(patient);
        }