public HotelRoomViewModel Get(int id)
 {
     return(_mapper.Map <HotelRoomDTO, HotelRoomViewModel>(_hotelRoomsService.GetById(id)));
 }