public async Task RoomLogic_GetAvailableRoom_ShouldCallGetAllAsyncFromRoomRepo()
        {
            await roomLogic.GetAvailableRoom(new DateTime(2018, 08, 22, 15, 00, 00));

            _roomRepository.Verify(r => r.GetAllAsync(), Times.Once);
        }