public void AddBedToWrongDb()
        {
            var bedObj = new BedDbOps(@"C:\\");
            var result = bedObj.AddBedToDb(new BedModel());

            Assert.Equal(HttpStatusCode.InternalServerError, result);
        }
        //return bool

        public object AddNewBedConfiguration(BedModel newBed, string dbPath)
        {
            //_occupancy.BedList.Add(newBed.BedId, newBed);
            //return "Bed Added Successfully";
            var bedDbObj = new BedDbOps(dbPath);

            return(bedDbObj.AddBedToDb(newBed));
        }