├── .gitignore ├── LICENSE ├── README.md ├── SECURITY.md └── src ├── Function ├── SmartHotel360.AzureFunction.sln └── SmartHotel360.AzureFunction │ ├── CosmosDBTriggerFunction.cs │ ├── Model │ └── Tweet.cs │ ├── SmartHotel360.AzureFunction.csproj │ ├── host.json │ └── local.settings.json ├── Registration-modernized ├── SentimentIntegration │ ├── Controllers │ │ └── ValuesController.cs │ ├── DocumentDBRepository.cs │ ├── Model │ │ └── Tweet.cs │ ├── PackageRoot │ │ ├── Config │ │ │ └── Settings.xml │ │ └── ServiceManifest.xml │ ├── Program.cs │ ├── SentimentIntegration.cs │ ├── SentimentIntegration.csproj │ ├── ServiceEventSource.cs │ ├── Startup.cs │ ├── appsettings.Development.json │ └── appsettings.json ├── SmartHotel.Registration.Wcf │ ├── .dockerignore │ ├── Data │ │ ├── Booking.cs │ │ ├── BookingsDbContext.cs │ │ ├── BookingsDbContextInitializer.cs │ │ └── Generators │ │ │ ├── AddressGenerator.cs │ │ │ ├── PassportGenerator.cs │ │ │ └── UserNameGenerator.cs │ ├── Dockerfile │ ├── IService.cs │ ├── Models │ │ ├── Registration.cs │ │ └── RegistrationDaySummary.cs │ ├── PackageRoot │ │ ├── Config │ │ │ └── Settings.xml │ │ └── ServiceManifest.xml │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Service.svc │ ├── Service.svc.cs │ ├── SmartHotel.Registration.Wcf.csproj │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Web.config │ └── packages.config ├── SmartHotel.Registration.Web │ ├── .dockerignore │ ├── App_Start │ │ ├── BundleConfig.cs │ │ └── RouteConfig.cs │ ├── ApplicationInsights.config │ ├── Bundle.config │ ├── Checkin.aspx │ ├── Checkin.aspx.cs │ ├── Checkin.aspx.designer.cs │ ├── Checkout.aspx │ ├── Checkout.aspx.cs │ ├── Checkout.aspx.designer.cs │ ├── Connected Services │ │ └── Data │ │ │ ├── Reference.cs │ │ │ ├── Reference.svcmap │ │ │ ├── Service.disco │ │ │ ├── Service.xsd │ │ │ ├── Service1.wsdl │ │ │ ├── Service1.xsd │ │ │ ├── Service2.xsd │ │ │ ├── SmartHotel.Registration.Data.Registration.datasource │ │ │ ├── SmartHotel.Registration.Data.RegistrationDaySummary.datasource │ │ │ ├── configuration.svcinfo │ │ │ └── configuration91.svcinfo │ ├── Content │ │ ├── Site.css │ │ ├── bootstrap.css │ │ └── bootstrap.min.css │ ├── Default.aspx │ ├── Default.aspx.cs │ ├── Default.aspx.designer.cs │ ├── Dockerfile │ ├── Global.asax │ ├── Global.asax.cs │ ├── Models │ │ └── Tweet.cs │ ├── PackageRoot │ │ ├── Config │ │ │ └── Settings.xml │ │ └── ServiceManifest.xml │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Scripts │ │ ├── WebForms │ │ │ ├── DetailsView.js │ │ │ ├── Focus.js │ │ │ ├── GridView.js │ │ │ ├── MSAjax │ │ │ │ ├── MicrosoftAjax.js │ │ │ │ ├── MicrosoftAjaxApplicationServices.js │ │ │ │ ├── MicrosoftAjaxComponentModel.js │ │ │ │ ├── MicrosoftAjaxCore.js │ │ │ │ ├── MicrosoftAjaxGlobalization.js │ │ │ │ ├── MicrosoftAjaxHistory.js │ │ │ │ ├── MicrosoftAjaxNetwork.js │ │ │ │ ├── MicrosoftAjaxSerialization.js │ │ │ │ ├── MicrosoftAjaxTimer.js │ │ │ │ ├── MicrosoftAjaxWebForms.js │ │ │ │ └── MicrosoftAjaxWebServices.js │ │ │ ├── Menu.js │ │ │ ├── MenuStandards.js │ │ │ ├── SmartNav.js │ │ │ ├── TreeView.js │ │ │ ├── WebForms.js │ │ │ ├── WebParts.js │ │ │ └── WebUIValidation.js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ ├── jquery-1.10.2.intellisense.js │ │ ├── jquery-1.10.2.js │ │ ├── jquery-1.10.2.min.js │ │ ├── jquery-1.10.2.min.map │ │ ├── modernizr-2.6.2.js │ │ ├── respond.js │ │ └── respond.min.js │ ├── Sentiments.aspx │ ├── Sentiments.aspx.cs │ ├── Sentiments.aspx.designer.cs │ ├── ServiceClientFactory.cs │ ├── Site.Master │ ├── Site.Master.cs │ ├── Site.Master.designer.cs │ ├── Site.Mobile.Master │ ├── Site.Mobile.Master.cs │ ├── Site.Mobile.Master.designer.cs │ ├── SmartHotel.Registration.Web.csproj │ ├── ViewSwitcher.ascx │ ├── ViewSwitcher.ascx.cs │ ├── ViewSwitcher.ascx.designer.cs │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Web.config │ ├── favicon.ico │ ├── fonts │ │ ├── Poppins-Medium.ttf │ │ ├── Poppins-Medium.woff │ │ ├── Poppins-Regular.ttf │ │ ├── Poppins-Regular.woff │ │ ├── Poppins-SemiBold.ttf │ │ ├── Poppins-SemiBold.woff │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ ├── images │ │ └── Logo.png │ └── packages.config ├── SmartHotel.Registration.sln └── SmartHotel.Registration │ ├── ApplicationModern.sfproj │ ├── ApplicationPackageRoot │ └── ApplicationManifest.xml │ ├── ApplicationParameters │ ├── Cloud.xml │ ├── Local.1Node.xml │ └── Local.5Node.xml │ ├── PublishProfiles │ ├── Cloud.xml │ ├── Local.1Node.xml │ └── Local.5Node.xml │ ├── Scripts │ └── Deploy-FabricApplication.ps1 │ └── packages.config └── Registration ├── SmartHotel.Registration.Wcf ├── Data │ ├── Booking.cs │ ├── BookingsDbContext.cs │ ├── BookingsDbContextInitializer.cs │ └── Generators │ │ ├── AddressGenerator.cs │ │ ├── PassportGenerator.cs │ │ └── UserNameGenerator.cs ├── IService.cs ├── Models │ ├── Registration.cs │ └── RegistrationDaySummary.cs ├── Properties │ └── AssemblyInfo.cs ├── Service.svc ├── Service.svc.cs ├── SmartHotel.Registration.Wcf.csproj ├── Web.Debug.config ├── Web.Release.config ├── Web.config └── packages.config ├── SmartHotel.Registration.sln └── SmartHotel.Registration ├── App_Start ├── BundleConfig.cs └── RouteConfig.cs ├── ApplicationInsights.config ├── Bundle.config ├── Checkin.aspx ├── Checkin.aspx.cs ├── Checkin.aspx.designer.cs ├── Checkout.aspx ├── Checkout.aspx.cs ├── Checkout.aspx.designer.cs ├── Connected Services └── Data │ ├── Reference.cs │ ├── Reference.svcmap │ ├── Service.disco │ ├── Service.xsd │ ├── Service1.wsdl │ ├── Service1.xsd │ ├── Service2.xsd │ ├── SmartHotel.Registration.Data.Registration.datasource │ ├── SmartHotel.Registration.Data.RegistrationDaySummary.datasource │ ├── configuration.svcinfo │ └── configuration91.svcinfo ├── Content ├── Site.css ├── bootstrap.css └── bootstrap.min.css ├── Default.aspx ├── Default.aspx.cs ├── Default.aspx.designer.cs ├── Global.asax ├── Global.asax.cs ├── Properties └── AssemblyInfo.cs ├── Scripts ├── WebForms │ ├── DetailsView.js │ ├── Focus.js │ ├── GridView.js │ ├── MSAjax │ │ ├── MicrosoftAjax.js │ │ ├── MicrosoftAjaxApplicationServices.js │ │ ├── MicrosoftAjaxComponentModel.js │ │ ├── MicrosoftAjaxCore.js │ │ ├── MicrosoftAjaxGlobalization.js │ │ ├── MicrosoftAjaxHistory.js │ │ ├── MicrosoftAjaxNetwork.js │ │ ├── MicrosoftAjaxSerialization.js │ │ ├── MicrosoftAjaxTimer.js │ │ ├── MicrosoftAjaxWebForms.js │ │ └── MicrosoftAjaxWebServices.js │ ├── Menu.js │ ├── MenuStandards.js │ ├── SmartNav.js │ ├── TreeView.js │ ├── WebForms.js │ ├── WebParts.js │ └── WebUIValidation.js ├── bootstrap.js ├── bootstrap.min.js ├── jquery-1.10.2.intellisense.js ├── jquery-1.10.2.js ├── jquery-1.10.2.min.js ├── jquery-1.10.2.min.map ├── modernizr-2.6.2.js ├── respond.js └── respond.min.js ├── ServiceClientFactory.cs ├── Site.Master ├── Site.Master.cs ├── Site.Master.designer.cs ├── Site.Mobile.Master ├── Site.Mobile.Master.cs ├── Site.Mobile.Master.designer.cs ├── SmartHotel.Registration.Web.csproj ├── ViewSwitcher.ascx ├── ViewSwitcher.ascx.cs ├── ViewSwitcher.ascx.designer.cs ├── Web.Debug.config ├── Web.Release.config ├── Web.config ├── favicon.ico ├── fonts ├── Poppins-Medium.ttf ├── Poppins-Medium.woff ├── Poppins-Regular.ttf ├── Poppins-Regular.woff ├── Poppins-SemiBold.ttf ├── Poppins-SemiBold.woff ├── glyphicons-halflings-regular.eot ├── glyphicons-halflings-regular.svg ├── glyphicons-halflings-regular.ttf └── glyphicons-halflings-regular.woff ├── images └── Logo.png └── packages.config /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/SECURITY.md -------------------------------------------------------------------------------- /src/Function/SmartHotel360.AzureFunction.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Function/SmartHotel360.AzureFunction.sln -------------------------------------------------------------------------------- /src/Function/SmartHotel360.AzureFunction/CosmosDBTriggerFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Function/SmartHotel360.AzureFunction/CosmosDBTriggerFunction.cs -------------------------------------------------------------------------------- /src/Function/SmartHotel360.AzureFunction/Model/Tweet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Function/SmartHotel360.AzureFunction/Model/Tweet.cs -------------------------------------------------------------------------------- /src/Function/SmartHotel360.AzureFunction/SmartHotel360.AzureFunction.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Function/SmartHotel360.AzureFunction/SmartHotel360.AzureFunction.csproj -------------------------------------------------------------------------------- /src/Function/SmartHotel360.AzureFunction/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Function/SmartHotel360.AzureFunction/host.json -------------------------------------------------------------------------------- /src/Function/SmartHotel360.AzureFunction/local.settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Function/SmartHotel360.AzureFunction/local.settings.json -------------------------------------------------------------------------------- /src/Registration-modernized/SentimentIntegration/Controllers/ValuesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SentimentIntegration/Controllers/ValuesController.cs -------------------------------------------------------------------------------- /src/Registration-modernized/SentimentIntegration/DocumentDBRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SentimentIntegration/DocumentDBRepository.cs -------------------------------------------------------------------------------- /src/Registration-modernized/SentimentIntegration/Model/Tweet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SentimentIntegration/Model/Tweet.cs -------------------------------------------------------------------------------- /src/Registration-modernized/SentimentIntegration/PackageRoot/Config/Settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SentimentIntegration/PackageRoot/Config/Settings.xml -------------------------------------------------------------------------------- /src/Registration-modernized/SentimentIntegration/PackageRoot/ServiceManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SentimentIntegration/PackageRoot/ServiceManifest.xml -------------------------------------------------------------------------------- /src/Registration-modernized/SentimentIntegration/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SentimentIntegration/Program.cs -------------------------------------------------------------------------------- /src/Registration-modernized/SentimentIntegration/SentimentIntegration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SentimentIntegration/SentimentIntegration.cs -------------------------------------------------------------------------------- /src/Registration-modernized/SentimentIntegration/SentimentIntegration.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SentimentIntegration/SentimentIntegration.csproj -------------------------------------------------------------------------------- /src/Registration-modernized/SentimentIntegration/ServiceEventSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SentimentIntegration/ServiceEventSource.cs -------------------------------------------------------------------------------- /src/Registration-modernized/SentimentIntegration/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SentimentIntegration/Startup.cs -------------------------------------------------------------------------------- /src/Registration-modernized/SentimentIntegration/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SentimentIntegration/appsettings.Development.json -------------------------------------------------------------------------------- /src/Registration-modernized/SentimentIntegration/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SentimentIntegration/appsettings.json -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Wcf/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Wcf/.dockerignore -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Wcf/Data/Booking.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Wcf/Data/Booking.cs -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Wcf/Data/BookingsDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Wcf/Data/BookingsDbContext.cs -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Wcf/Data/BookingsDbContextInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Wcf/Data/BookingsDbContextInitializer.cs -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Wcf/Data/Generators/AddressGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Wcf/Data/Generators/AddressGenerator.cs -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Wcf/Data/Generators/PassportGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Wcf/Data/Generators/PassportGenerator.cs -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Wcf/Data/Generators/UserNameGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Wcf/Data/Generators/UserNameGenerator.cs -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Wcf/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Wcf/Dockerfile -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Wcf/IService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Wcf/IService.cs -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Wcf/Models/Registration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Wcf/Models/Registration.cs -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Wcf/Models/RegistrationDaySummary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Wcf/Models/RegistrationDaySummary.cs -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Wcf/PackageRoot/Config/Settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Wcf/PackageRoot/Config/Settings.xml -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Wcf/PackageRoot/ServiceManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Wcf/PackageRoot/ServiceManifest.xml -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Wcf/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Wcf/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Wcf/Service.svc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Wcf/Service.svc -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Wcf/Service.svc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Wcf/Service.svc.cs -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Wcf/SmartHotel.Registration.Wcf.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Wcf/SmartHotel.Registration.Wcf.csproj -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Wcf/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Wcf/Web.Debug.config -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Wcf/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Wcf/Web.Release.config -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Wcf/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Wcf/Web.config -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Wcf/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Wcf/packages.config -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Web/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Web/.dockerignore -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Web/App_Start/BundleConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Web/App_Start/BundleConfig.cs -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Web/App_Start/RouteConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Web/App_Start/RouteConfig.cs -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Web/ApplicationInsights.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Web/ApplicationInsights.config -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Web/Bundle.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Web/Bundle.config -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Web/Checkin.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Web/Checkin.aspx -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Web/Checkin.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Web/Checkin.aspx.cs -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Web/Checkin.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Web/Checkin.aspx.designer.cs -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Web/Checkout.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Web/Checkout.aspx -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Web/Checkout.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Web/Checkout.aspx.cs -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Web/Checkout.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Web/Checkout.aspx.designer.cs -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Web/Connected Services/Data/Reference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Web/Connected Services/Data/Reference.cs -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Web/Connected Services/Data/Reference.svcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Web/Connected Services/Data/Reference.svcmap -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Web/Connected Services/Data/Service.disco: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Web/Connected Services/Data/Service.disco -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Web/Connected Services/Data/Service.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Web/Connected Services/Data/Service.xsd -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Web/Connected Services/Data/Service1.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Web/Connected Services/Data/Service1.wsdl -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Web/Connected Services/Data/Service1.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Web/Connected Services/Data/Service1.xsd -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Web/Connected Services/Data/Service2.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Web/Connected Services/Data/Service2.xsd -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Web/Connected Services/Data/SmartHotel.Registration.Data.Registration.datasource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Web/Connected Services/Data/SmartHotel.Registration.Data.Registration.datasource -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Web/Connected Services/Data/SmartHotel.Registration.Data.RegistrationDaySummary.datasource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Web/Connected Services/Data/SmartHotel.Registration.Data.RegistrationDaySummary.datasource -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Web/Connected Services/Data/configuration.svcinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Web/Connected Services/Data/configuration.svcinfo -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Web/Connected Services/Data/configuration91.svcinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Web/Connected Services/Data/configuration91.svcinfo -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Web/Content/Site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Web/Content/Site.css -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Web/Content/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Web/Content/bootstrap.css -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Web/Content/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Web/Content/bootstrap.min.css -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Web/Default.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Web/Default.aspx -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Web/Default.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Web/Default.aspx.cs -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Web/Default.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Web/Default.aspx.designer.cs -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Web/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Web/Dockerfile -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Web/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Web/Global.asax -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Web/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Web/Global.asax.cs -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Web/Models/Tweet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Web/Models/Tweet.cs -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Web/PackageRoot/Config/Settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Web/PackageRoot/Config/Settings.xml -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Web/PackageRoot/ServiceManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Web/PackageRoot/ServiceManifest.xml -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Web/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Web/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Web/Scripts/WebForms/DetailsView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Web/Scripts/WebForms/DetailsView.js -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Web/Scripts/WebForms/Focus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Web/Scripts/WebForms/Focus.js -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Web/Scripts/WebForms/GridView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Web/Scripts/WebForms/GridView.js -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Web/Scripts/WebForms/MSAjax/MicrosoftAjax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Web/Scripts/WebForms/MSAjax/MicrosoftAjax.js -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Web/Scripts/WebForms/MSAjax/MicrosoftAjaxApplicationServices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Web/Scripts/WebForms/MSAjax/MicrosoftAjaxApplicationServices.js -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Web/Scripts/WebForms/MSAjax/MicrosoftAjaxComponentModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Web/Scripts/WebForms/MSAjax/MicrosoftAjaxComponentModel.js -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Web/Scripts/WebForms/MSAjax/MicrosoftAjaxCore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Web/Scripts/WebForms/MSAjax/MicrosoftAjaxCore.js -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Web/Scripts/WebForms/MSAjax/MicrosoftAjaxGlobalization.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Web/Scripts/WebForms/MSAjax/MicrosoftAjaxGlobalization.js -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Web/Scripts/WebForms/MSAjax/MicrosoftAjaxHistory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Web/Scripts/WebForms/MSAjax/MicrosoftAjaxHistory.js -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Web/Scripts/WebForms/MSAjax/MicrosoftAjaxNetwork.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Web/Scripts/WebForms/MSAjax/MicrosoftAjaxNetwork.js -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Web/Scripts/WebForms/MSAjax/MicrosoftAjaxSerialization.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Web/Scripts/WebForms/MSAjax/MicrosoftAjaxSerialization.js -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Web/Scripts/WebForms/MSAjax/MicrosoftAjaxTimer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Web/Scripts/WebForms/MSAjax/MicrosoftAjaxTimer.js -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Web/Scripts/WebForms/MSAjax/MicrosoftAjaxWebForms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Web/Scripts/WebForms/MSAjax/MicrosoftAjaxWebForms.js -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Web/Scripts/WebForms/MSAjax/MicrosoftAjaxWebServices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Web/Scripts/WebForms/MSAjax/MicrosoftAjaxWebServices.js -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Web/Scripts/WebForms/Menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Web/Scripts/WebForms/Menu.js -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Web/Scripts/WebForms/MenuStandards.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Web/Scripts/WebForms/MenuStandards.js -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Web/Scripts/WebForms/SmartNav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Web/Scripts/WebForms/SmartNav.js -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Web/Scripts/WebForms/TreeView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Web/Scripts/WebForms/TreeView.js -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Web/Scripts/WebForms/WebForms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Web/Scripts/WebForms/WebForms.js -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Web/Scripts/WebForms/WebParts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Web/Scripts/WebForms/WebParts.js -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Web/Scripts/WebForms/WebUIValidation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Web/Scripts/WebForms/WebUIValidation.js -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Web/Scripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Web/Scripts/bootstrap.js -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Web/Scripts/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Web/Scripts/bootstrap.min.js -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Web/Scripts/jquery-1.10.2.intellisense.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Web/Scripts/jquery-1.10.2.intellisense.js -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Web/Scripts/jquery-1.10.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Web/Scripts/jquery-1.10.2.js -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Web/Scripts/jquery-1.10.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Web/Scripts/jquery-1.10.2.min.js -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Web/Scripts/jquery-1.10.2.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Web/Scripts/jquery-1.10.2.min.map -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Web/Scripts/modernizr-2.6.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Web/Scripts/modernizr-2.6.2.js -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Web/Scripts/respond.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Web/Scripts/respond.js -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Web/Scripts/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Web/Scripts/respond.min.js -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Web/Sentiments.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Web/Sentiments.aspx -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Web/Sentiments.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Web/Sentiments.aspx.cs -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Web/Sentiments.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Web/Sentiments.aspx.designer.cs -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Web/ServiceClientFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Web/ServiceClientFactory.cs -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Web/Site.Master: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Web/Site.Master -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Web/Site.Master.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Web/Site.Master.cs -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Web/Site.Master.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Web/Site.Master.designer.cs -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Web/Site.Mobile.Master: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Web/Site.Mobile.Master -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Web/Site.Mobile.Master.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Web/Site.Mobile.Master.cs -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Web/Site.Mobile.Master.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Web/Site.Mobile.Master.designer.cs -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Web/SmartHotel.Registration.Web.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Web/SmartHotel.Registration.Web.csproj -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Web/ViewSwitcher.ascx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Web/ViewSwitcher.ascx -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Web/ViewSwitcher.ascx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Web/ViewSwitcher.ascx.cs -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Web/ViewSwitcher.ascx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Web/ViewSwitcher.ascx.designer.cs -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Web/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Web/Web.Debug.config -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Web/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Web/Web.Release.config -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Web/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Web/Web.config -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Web/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Web/favicon.ico -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Web/fonts/Poppins-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Web/fonts/Poppins-Medium.ttf -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Web/fonts/Poppins-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Web/fonts/Poppins-Medium.woff -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Web/fonts/Poppins-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Web/fonts/Poppins-Regular.ttf -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Web/fonts/Poppins-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Web/fonts/Poppins-Regular.woff -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Web/fonts/Poppins-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Web/fonts/Poppins-SemiBold.ttf -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Web/fonts/Poppins-SemiBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Web/fonts/Poppins-SemiBold.woff -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Web/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Web/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Web/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Web/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Web/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Web/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Web/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Web/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Web/images/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Web/images/Logo.png -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.Web/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.Web/packages.config -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration.sln -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration/ApplicationModern.sfproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration/ApplicationModern.sfproj -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration/ApplicationPackageRoot/ApplicationManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration/ApplicationPackageRoot/ApplicationManifest.xml -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration/ApplicationParameters/Cloud.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration/ApplicationParameters/Cloud.xml -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration/ApplicationParameters/Local.1Node.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration/ApplicationParameters/Local.1Node.xml -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration/ApplicationParameters/Local.5Node.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration/ApplicationParameters/Local.5Node.xml -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration/PublishProfiles/Cloud.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration/PublishProfiles/Cloud.xml -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration/PublishProfiles/Local.1Node.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration/PublishProfiles/Local.1Node.xml -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration/PublishProfiles/Local.5Node.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration/PublishProfiles/Local.5Node.xml -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration/Scripts/Deploy-FabricApplication.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration/Scripts/Deploy-FabricApplication.ps1 -------------------------------------------------------------------------------- /src/Registration-modernized/SmartHotel.Registration/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration-modernized/SmartHotel.Registration/packages.config -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration.Wcf/Data/Booking.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration.Wcf/Data/Booking.cs -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration.Wcf/Data/BookingsDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration.Wcf/Data/BookingsDbContext.cs -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration.Wcf/Data/BookingsDbContextInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration.Wcf/Data/BookingsDbContextInitializer.cs -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration.Wcf/Data/Generators/AddressGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration.Wcf/Data/Generators/AddressGenerator.cs -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration.Wcf/Data/Generators/PassportGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration.Wcf/Data/Generators/PassportGenerator.cs -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration.Wcf/Data/Generators/UserNameGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration.Wcf/Data/Generators/UserNameGenerator.cs -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration.Wcf/IService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration.Wcf/IService.cs -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration.Wcf/Models/Registration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration.Wcf/Models/Registration.cs -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration.Wcf/Models/RegistrationDaySummary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration.Wcf/Models/RegistrationDaySummary.cs -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration.Wcf/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration.Wcf/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration.Wcf/Service.svc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration.Wcf/Service.svc -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration.Wcf/Service.svc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration.Wcf/Service.svc.cs -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration.Wcf/SmartHotel.Registration.Wcf.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration.Wcf/SmartHotel.Registration.Wcf.csproj -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration.Wcf/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration.Wcf/Web.Debug.config -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration.Wcf/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration.Wcf/Web.Release.config -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration.Wcf/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration.Wcf/Web.config -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration.Wcf/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration.Wcf/packages.config -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration.sln -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration/App_Start/BundleConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration/App_Start/BundleConfig.cs -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration/App_Start/RouteConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration/App_Start/RouteConfig.cs -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration/ApplicationInsights.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration/ApplicationInsights.config -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration/Bundle.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration/Bundle.config -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration/Checkin.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration/Checkin.aspx -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration/Checkin.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration/Checkin.aspx.cs -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration/Checkin.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration/Checkin.aspx.designer.cs -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration/Checkout.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration/Checkout.aspx -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration/Checkout.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration/Checkout.aspx.cs -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration/Checkout.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration/Checkout.aspx.designer.cs -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration/Connected Services/Data/Reference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration/Connected Services/Data/Reference.cs -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration/Connected Services/Data/Reference.svcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration/Connected Services/Data/Reference.svcmap -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration/Connected Services/Data/Service.disco: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration/Connected Services/Data/Service.disco -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration/Connected Services/Data/Service.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration/Connected Services/Data/Service.xsd -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration/Connected Services/Data/Service1.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration/Connected Services/Data/Service1.wsdl -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration/Connected Services/Data/Service1.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration/Connected Services/Data/Service1.xsd -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration/Connected Services/Data/Service2.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration/Connected Services/Data/Service2.xsd -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration/Connected Services/Data/SmartHotel.Registration.Data.Registration.datasource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration/Connected Services/Data/SmartHotel.Registration.Data.Registration.datasource -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration/Connected Services/Data/SmartHotel.Registration.Data.RegistrationDaySummary.datasource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration/Connected Services/Data/SmartHotel.Registration.Data.RegistrationDaySummary.datasource -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration/Connected Services/Data/configuration.svcinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration/Connected Services/Data/configuration.svcinfo -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration/Connected Services/Data/configuration91.svcinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration/Connected Services/Data/configuration91.svcinfo -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration/Content/Site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration/Content/Site.css -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration/Content/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration/Content/bootstrap.css -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration/Content/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration/Content/bootstrap.min.css -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration/Default.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration/Default.aspx -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration/Default.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration/Default.aspx.cs -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration/Default.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration/Default.aspx.designer.cs -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration/Global.asax -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration/Global.asax.cs -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration/Scripts/WebForms/DetailsView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration/Scripts/WebForms/DetailsView.js -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration/Scripts/WebForms/Focus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration/Scripts/WebForms/Focus.js -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration/Scripts/WebForms/GridView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration/Scripts/WebForms/GridView.js -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration/Scripts/WebForms/MSAjax/MicrosoftAjax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration/Scripts/WebForms/MSAjax/MicrosoftAjax.js -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration/Scripts/WebForms/MSAjax/MicrosoftAjaxApplicationServices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration/Scripts/WebForms/MSAjax/MicrosoftAjaxApplicationServices.js -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration/Scripts/WebForms/MSAjax/MicrosoftAjaxComponentModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration/Scripts/WebForms/MSAjax/MicrosoftAjaxComponentModel.js -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration/Scripts/WebForms/MSAjax/MicrosoftAjaxCore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration/Scripts/WebForms/MSAjax/MicrosoftAjaxCore.js -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration/Scripts/WebForms/MSAjax/MicrosoftAjaxGlobalization.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration/Scripts/WebForms/MSAjax/MicrosoftAjaxGlobalization.js -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration/Scripts/WebForms/MSAjax/MicrosoftAjaxHistory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration/Scripts/WebForms/MSAjax/MicrosoftAjaxHistory.js -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration/Scripts/WebForms/MSAjax/MicrosoftAjaxNetwork.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration/Scripts/WebForms/MSAjax/MicrosoftAjaxNetwork.js -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration/Scripts/WebForms/MSAjax/MicrosoftAjaxSerialization.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration/Scripts/WebForms/MSAjax/MicrosoftAjaxSerialization.js -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration/Scripts/WebForms/MSAjax/MicrosoftAjaxTimer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration/Scripts/WebForms/MSAjax/MicrosoftAjaxTimer.js -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration/Scripts/WebForms/MSAjax/MicrosoftAjaxWebForms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration/Scripts/WebForms/MSAjax/MicrosoftAjaxWebForms.js -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration/Scripts/WebForms/MSAjax/MicrosoftAjaxWebServices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration/Scripts/WebForms/MSAjax/MicrosoftAjaxWebServices.js -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration/Scripts/WebForms/Menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration/Scripts/WebForms/Menu.js -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration/Scripts/WebForms/MenuStandards.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration/Scripts/WebForms/MenuStandards.js -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration/Scripts/WebForms/SmartNav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration/Scripts/WebForms/SmartNav.js -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration/Scripts/WebForms/TreeView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration/Scripts/WebForms/TreeView.js -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration/Scripts/WebForms/WebForms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration/Scripts/WebForms/WebForms.js -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration/Scripts/WebForms/WebParts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration/Scripts/WebForms/WebParts.js -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration/Scripts/WebForms/WebUIValidation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration/Scripts/WebForms/WebUIValidation.js -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration/Scripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration/Scripts/bootstrap.js -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration/Scripts/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration/Scripts/bootstrap.min.js -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration/Scripts/jquery-1.10.2.intellisense.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration/Scripts/jquery-1.10.2.intellisense.js -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration/Scripts/jquery-1.10.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration/Scripts/jquery-1.10.2.js -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration/Scripts/jquery-1.10.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration/Scripts/jquery-1.10.2.min.js -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration/Scripts/jquery-1.10.2.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration/Scripts/jquery-1.10.2.min.map -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration/Scripts/modernizr-2.6.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration/Scripts/modernizr-2.6.2.js -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration/Scripts/respond.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration/Scripts/respond.js -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration/Scripts/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration/Scripts/respond.min.js -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration/ServiceClientFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration/ServiceClientFactory.cs -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration/Site.Master: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration/Site.Master -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration/Site.Master.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration/Site.Master.cs -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration/Site.Master.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration/Site.Master.designer.cs -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration/Site.Mobile.Master: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration/Site.Mobile.Master -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration/Site.Mobile.Master.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration/Site.Mobile.Master.cs -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration/Site.Mobile.Master.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration/Site.Mobile.Master.designer.cs -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration/SmartHotel.Registration.Web.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration/SmartHotel.Registration.Web.csproj -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration/ViewSwitcher.ascx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration/ViewSwitcher.ascx -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration/ViewSwitcher.ascx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration/ViewSwitcher.ascx.cs -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration/ViewSwitcher.ascx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration/ViewSwitcher.ascx.designer.cs -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration/Web.Debug.config -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration/Web.Release.config -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration/Web.config -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration/favicon.ico -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration/fonts/Poppins-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration/fonts/Poppins-Medium.ttf -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration/fonts/Poppins-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration/fonts/Poppins-Medium.woff -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration/fonts/Poppins-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration/fonts/Poppins-Regular.ttf -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration/fonts/Poppins-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration/fonts/Poppins-Regular.woff -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration/fonts/Poppins-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration/fonts/Poppins-SemiBold.ttf -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration/fonts/Poppins-SemiBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration/fonts/Poppins-SemiBold.woff -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration/images/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration/images/Logo.png -------------------------------------------------------------------------------- /src/Registration/SmartHotel.Registration/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/smarthotels360-azure/HEAD/src/Registration/SmartHotel.Registration/packages.config --------------------------------------------------------------------------------