├── .gitignore ├── Database └── SQLScript.sql ├── LuisApp └── Hotel.json ├── README.md └── src ├── ActiveLearningBot.sln └── ActiveLearningBot ├── ActiveLearningBot.csproj ├── App_Start └── WebApiConfig.cs ├── Controllers └── MessagesController.cs ├── DB.cs ├── Dialogs └── RootDialog.cs ├── Global.asax ├── Global.asax.cs ├── LuisService.cs ├── Properties └── AssemblyInfo.cs ├── Web.Debug.config ├── Web.Release.config ├── Web.config ├── default.htm └── packages.config /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreluizsecco/ActiveLearningBotV3/HEAD/.gitignore -------------------------------------------------------------------------------- /Database/SQLScript.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreluizsecco/ActiveLearningBotV3/HEAD/Database/SQLScript.sql -------------------------------------------------------------------------------- /LuisApp/Hotel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreluizsecco/ActiveLearningBotV3/HEAD/LuisApp/Hotel.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreluizsecco/ActiveLearningBotV3/HEAD/README.md -------------------------------------------------------------------------------- /src/ActiveLearningBot.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreluizsecco/ActiveLearningBotV3/HEAD/src/ActiveLearningBot.sln -------------------------------------------------------------------------------- /src/ActiveLearningBot/ActiveLearningBot.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreluizsecco/ActiveLearningBotV3/HEAD/src/ActiveLearningBot/ActiveLearningBot.csproj -------------------------------------------------------------------------------- /src/ActiveLearningBot/App_Start/WebApiConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreluizsecco/ActiveLearningBotV3/HEAD/src/ActiveLearningBot/App_Start/WebApiConfig.cs -------------------------------------------------------------------------------- /src/ActiveLearningBot/Controllers/MessagesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreluizsecco/ActiveLearningBotV3/HEAD/src/ActiveLearningBot/Controllers/MessagesController.cs -------------------------------------------------------------------------------- /src/ActiveLearningBot/DB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreluizsecco/ActiveLearningBotV3/HEAD/src/ActiveLearningBot/DB.cs -------------------------------------------------------------------------------- /src/ActiveLearningBot/Dialogs/RootDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreluizsecco/ActiveLearningBotV3/HEAD/src/ActiveLearningBot/Dialogs/RootDialog.cs -------------------------------------------------------------------------------- /src/ActiveLearningBot/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreluizsecco/ActiveLearningBotV3/HEAD/src/ActiveLearningBot/Global.asax -------------------------------------------------------------------------------- /src/ActiveLearningBot/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreluizsecco/ActiveLearningBotV3/HEAD/src/ActiveLearningBot/Global.asax.cs -------------------------------------------------------------------------------- /src/ActiveLearningBot/LuisService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreluizsecco/ActiveLearningBotV3/HEAD/src/ActiveLearningBot/LuisService.cs -------------------------------------------------------------------------------- /src/ActiveLearningBot/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreluizsecco/ActiveLearningBotV3/HEAD/src/ActiveLearningBot/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/ActiveLearningBot/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreluizsecco/ActiveLearningBotV3/HEAD/src/ActiveLearningBot/Web.Debug.config -------------------------------------------------------------------------------- /src/ActiveLearningBot/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreluizsecco/ActiveLearningBotV3/HEAD/src/ActiveLearningBot/Web.Release.config -------------------------------------------------------------------------------- /src/ActiveLearningBot/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreluizsecco/ActiveLearningBotV3/HEAD/src/ActiveLearningBot/Web.config -------------------------------------------------------------------------------- /src/ActiveLearningBot/default.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreluizsecco/ActiveLearningBotV3/HEAD/src/ActiveLearningBot/default.htm -------------------------------------------------------------------------------- /src/ActiveLearningBot/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreluizsecco/ActiveLearningBotV3/HEAD/src/ActiveLearningBot/packages.config --------------------------------------------------------------------------------