public ActionResult <SectionReadDto> GetAllSectionsOnRoom(int id)
        {
            var sections = _repository.GetAllSectionsOnRoom(id);

            return(Ok(_mapper.Map <IEnumerable <SectionReadDto> >(sections)));
        }