public bool?ChangeStatus(int id)
        {
            var status = _bedRepository.ChangeStatus(id);

            return(status);
        }