├── .gitignore ├── CardProviders ├── CardProvider.cs ├── Confirmation.cs ├── Date.cs ├── Locations.cs ├── Lunch.cs ├── People.cs ├── PersonalInfo.cs └── Schools.cs ├── CardViews ├── ProxyMessageView.cshtml └── WildlifeView.cshtml ├── Cards ├── 0-Welcome.JSON ├── 1-Schools.JSON ├── 2-Locations.JSON ├── 3-People.JSON ├── 4-Date.JSON ├── 5-Lunch.JSON ├── 6-PersonalInfo.JSON ├── 7-Confirmation.JSON ├── Danger.JSON ├── Receipt.JSON └── SubscriberNotification.JSON ├── ContosoScuba.Bot.csproj ├── ContosoScuba.Bot.sln ├── ContosoScubaBot.cs ├── LICENSE ├── Models ├── ProxyMessage.cs ├── ScubaCardResult.cs ├── UserScubaData.cs ├── ViewImage.cs └── WildlifeData.cs ├── Program.cs ├── Properties └── launchSettings.json ├── README.md ├── Services ├── ReplyExtensions.cs ├── ReservationSubscriptionService.cs ├── SampleDataService.cs └── ScubaCardService.cs ├── Startup.cs ├── WalkThrough.gif ├── appsettings.json └── wwwroot ├── Assets ├── 1.jpg ├── 2.jpg ├── 3.jpg ├── 4.jpg ├── 5.jpg ├── AdventureWorksLogo2.png ├── FabrikamLogo2.png ├── Logo.png ├── MargiesTravel2.png ├── bares.png ├── chicken.jpg ├── clown-fish-2199907_640.jpg ├── contoso_logo.jpg ├── dangerous.png ├── dolphin-203875_640.jpg ├── lei.png ├── loggerhead-turtle-123402_640.jpg ├── octo_calendar.png ├── scuba-diver-1237237_640.jpg ├── scubabackground.jpeg ├── steak.jpg ├── thomas.png └── tofu.jpg └── default.htm /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthidinger/ContosoScubaBot/HEAD/.gitignore -------------------------------------------------------------------------------- /CardProviders/CardProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthidinger/ContosoScubaBot/HEAD/CardProviders/CardProvider.cs -------------------------------------------------------------------------------- /CardProviders/Confirmation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthidinger/ContosoScubaBot/HEAD/CardProviders/Confirmation.cs -------------------------------------------------------------------------------- /CardProviders/Date.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthidinger/ContosoScubaBot/HEAD/CardProviders/Date.cs -------------------------------------------------------------------------------- /CardProviders/Locations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthidinger/ContosoScubaBot/HEAD/CardProviders/Locations.cs -------------------------------------------------------------------------------- /CardProviders/Lunch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthidinger/ContosoScubaBot/HEAD/CardProviders/Lunch.cs -------------------------------------------------------------------------------- /CardProviders/People.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthidinger/ContosoScubaBot/HEAD/CardProviders/People.cs -------------------------------------------------------------------------------- /CardProviders/PersonalInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthidinger/ContosoScubaBot/HEAD/CardProviders/PersonalInfo.cs -------------------------------------------------------------------------------- /CardProviders/Schools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthidinger/ContosoScubaBot/HEAD/CardProviders/Schools.cs -------------------------------------------------------------------------------- /CardViews/ProxyMessageView.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthidinger/ContosoScubaBot/HEAD/CardViews/ProxyMessageView.cshtml -------------------------------------------------------------------------------- /CardViews/WildlifeView.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthidinger/ContosoScubaBot/HEAD/CardViews/WildlifeView.cshtml -------------------------------------------------------------------------------- /Cards/0-Welcome.JSON: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthidinger/ContosoScubaBot/HEAD/Cards/0-Welcome.JSON -------------------------------------------------------------------------------- /Cards/1-Schools.JSON: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthidinger/ContosoScubaBot/HEAD/Cards/1-Schools.JSON -------------------------------------------------------------------------------- /Cards/2-Locations.JSON: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthidinger/ContosoScubaBot/HEAD/Cards/2-Locations.JSON -------------------------------------------------------------------------------- /Cards/3-People.JSON: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthidinger/ContosoScubaBot/HEAD/Cards/3-People.JSON -------------------------------------------------------------------------------- /Cards/4-Date.JSON: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthidinger/ContosoScubaBot/HEAD/Cards/4-Date.JSON -------------------------------------------------------------------------------- /Cards/5-Lunch.JSON: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthidinger/ContosoScubaBot/HEAD/Cards/5-Lunch.JSON -------------------------------------------------------------------------------- /Cards/6-PersonalInfo.JSON: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthidinger/ContosoScubaBot/HEAD/Cards/6-PersonalInfo.JSON -------------------------------------------------------------------------------- /Cards/7-Confirmation.JSON: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthidinger/ContosoScubaBot/HEAD/Cards/7-Confirmation.JSON -------------------------------------------------------------------------------- /Cards/Danger.JSON: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthidinger/ContosoScubaBot/HEAD/Cards/Danger.JSON -------------------------------------------------------------------------------- /Cards/Receipt.JSON: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthidinger/ContosoScubaBot/HEAD/Cards/Receipt.JSON -------------------------------------------------------------------------------- /Cards/SubscriberNotification.JSON: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthidinger/ContosoScubaBot/HEAD/Cards/SubscriberNotification.JSON -------------------------------------------------------------------------------- /ContosoScuba.Bot.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthidinger/ContosoScubaBot/HEAD/ContosoScuba.Bot.csproj -------------------------------------------------------------------------------- /ContosoScuba.Bot.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthidinger/ContosoScubaBot/HEAD/ContosoScuba.Bot.sln -------------------------------------------------------------------------------- /ContosoScubaBot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthidinger/ContosoScubaBot/HEAD/ContosoScubaBot.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthidinger/ContosoScubaBot/HEAD/LICENSE -------------------------------------------------------------------------------- /Models/ProxyMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthidinger/ContosoScubaBot/HEAD/Models/ProxyMessage.cs -------------------------------------------------------------------------------- /Models/ScubaCardResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthidinger/ContosoScubaBot/HEAD/Models/ScubaCardResult.cs -------------------------------------------------------------------------------- /Models/UserScubaData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthidinger/ContosoScubaBot/HEAD/Models/UserScubaData.cs -------------------------------------------------------------------------------- /Models/ViewImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthidinger/ContosoScubaBot/HEAD/Models/ViewImage.cs -------------------------------------------------------------------------------- /Models/WildlifeData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthidinger/ContosoScubaBot/HEAD/Models/WildlifeData.cs -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthidinger/ContosoScubaBot/HEAD/Program.cs -------------------------------------------------------------------------------- /Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthidinger/ContosoScubaBot/HEAD/Properties/launchSettings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthidinger/ContosoScubaBot/HEAD/README.md -------------------------------------------------------------------------------- /Services/ReplyExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthidinger/ContosoScubaBot/HEAD/Services/ReplyExtensions.cs -------------------------------------------------------------------------------- /Services/ReservationSubscriptionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthidinger/ContosoScubaBot/HEAD/Services/ReservationSubscriptionService.cs -------------------------------------------------------------------------------- /Services/SampleDataService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthidinger/ContosoScubaBot/HEAD/Services/SampleDataService.cs -------------------------------------------------------------------------------- /Services/ScubaCardService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthidinger/ContosoScubaBot/HEAD/Services/ScubaCardService.cs -------------------------------------------------------------------------------- /Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthidinger/ContosoScubaBot/HEAD/Startup.cs -------------------------------------------------------------------------------- /WalkThrough.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthidinger/ContosoScubaBot/HEAD/WalkThrough.gif -------------------------------------------------------------------------------- /appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthidinger/ContosoScubaBot/HEAD/appsettings.json -------------------------------------------------------------------------------- /wwwroot/Assets/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthidinger/ContosoScubaBot/HEAD/wwwroot/Assets/1.jpg -------------------------------------------------------------------------------- /wwwroot/Assets/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthidinger/ContosoScubaBot/HEAD/wwwroot/Assets/2.jpg -------------------------------------------------------------------------------- /wwwroot/Assets/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthidinger/ContosoScubaBot/HEAD/wwwroot/Assets/3.jpg -------------------------------------------------------------------------------- /wwwroot/Assets/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthidinger/ContosoScubaBot/HEAD/wwwroot/Assets/4.jpg -------------------------------------------------------------------------------- /wwwroot/Assets/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthidinger/ContosoScubaBot/HEAD/wwwroot/Assets/5.jpg -------------------------------------------------------------------------------- /wwwroot/Assets/AdventureWorksLogo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthidinger/ContosoScubaBot/HEAD/wwwroot/Assets/AdventureWorksLogo2.png -------------------------------------------------------------------------------- /wwwroot/Assets/FabrikamLogo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthidinger/ContosoScubaBot/HEAD/wwwroot/Assets/FabrikamLogo2.png -------------------------------------------------------------------------------- /wwwroot/Assets/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthidinger/ContosoScubaBot/HEAD/wwwroot/Assets/Logo.png -------------------------------------------------------------------------------- /wwwroot/Assets/MargiesTravel2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthidinger/ContosoScubaBot/HEAD/wwwroot/Assets/MargiesTravel2.png -------------------------------------------------------------------------------- /wwwroot/Assets/bares.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthidinger/ContosoScubaBot/HEAD/wwwroot/Assets/bares.png -------------------------------------------------------------------------------- /wwwroot/Assets/chicken.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthidinger/ContosoScubaBot/HEAD/wwwroot/Assets/chicken.jpg -------------------------------------------------------------------------------- /wwwroot/Assets/clown-fish-2199907_640.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthidinger/ContosoScubaBot/HEAD/wwwroot/Assets/clown-fish-2199907_640.jpg -------------------------------------------------------------------------------- /wwwroot/Assets/contoso_logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthidinger/ContosoScubaBot/HEAD/wwwroot/Assets/contoso_logo.jpg -------------------------------------------------------------------------------- /wwwroot/Assets/dangerous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthidinger/ContosoScubaBot/HEAD/wwwroot/Assets/dangerous.png -------------------------------------------------------------------------------- /wwwroot/Assets/dolphin-203875_640.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthidinger/ContosoScubaBot/HEAD/wwwroot/Assets/dolphin-203875_640.jpg -------------------------------------------------------------------------------- /wwwroot/Assets/lei.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthidinger/ContosoScubaBot/HEAD/wwwroot/Assets/lei.png -------------------------------------------------------------------------------- /wwwroot/Assets/loggerhead-turtle-123402_640.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthidinger/ContosoScubaBot/HEAD/wwwroot/Assets/loggerhead-turtle-123402_640.jpg -------------------------------------------------------------------------------- /wwwroot/Assets/octo_calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthidinger/ContosoScubaBot/HEAD/wwwroot/Assets/octo_calendar.png -------------------------------------------------------------------------------- /wwwroot/Assets/scuba-diver-1237237_640.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthidinger/ContosoScubaBot/HEAD/wwwroot/Assets/scuba-diver-1237237_640.jpg -------------------------------------------------------------------------------- /wwwroot/Assets/scubabackground.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthidinger/ContosoScubaBot/HEAD/wwwroot/Assets/scubabackground.jpeg -------------------------------------------------------------------------------- /wwwroot/Assets/steak.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthidinger/ContosoScubaBot/HEAD/wwwroot/Assets/steak.jpg -------------------------------------------------------------------------------- /wwwroot/Assets/thomas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthidinger/ContosoScubaBot/HEAD/wwwroot/Assets/thomas.png -------------------------------------------------------------------------------- /wwwroot/Assets/tofu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthidinger/ContosoScubaBot/HEAD/wwwroot/Assets/tofu.jpg -------------------------------------------------------------------------------- /wwwroot/default.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthidinger/ContosoScubaBot/HEAD/wwwroot/default.htm --------------------------------------------------------------------------------