public void GivenPatientIdIsNull_WhenStorePatientVitalsDataCalled_ExpectedException()
 {
     neighbourRef = _mockObj.Object;
     patientVitalsStorage.StorePatientVitalsData(patientVitals);
 }
        public void StorePatientVitals([FromBody] PatientVitals patientVitals)
        {
            IPatientVitalsStorage patientVitalsStorage = new QueuePatientVitalsStorage(dataAccess);

            patientVitalsStorage.StorePatientVitalsData(patientVitals);
        }