public void TestAllotBedToPatient()
        {
            var patientLogic = new PatientBusinessLogic(_repo);
            var bed          = new BedAllotmentModel();
            var response     = patientLogic.AllotBedToPatient(bed);

            Assert.NotNull(response);
        }