├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── Lab Resources ├── Build Managed Solution.json ├── Deploy to Production.json ├── Export From Dev.json ├── Hands-on with Power Apps and Azure.pptx ├── Hands-on with PowerApps and Azure-Lab Document.docx ├── Hands-on with PowerApps and Azure-Lab Document.pdf ├── Product.svg ├── Products_list_icon.jpg └── Swagger.json ├── README.md ├── SECURITY.md └── src ├── ProductListAPI.sln └── ProductListAPI ├── App_Start ├── GenericStorage.cs ├── SwaggerConfig.cs └── WebApiConfig.cs ├── Controllers └── ProductsController.cs ├── Global.asax ├── Global.asax.cs ├── Models └── Product.cs ├── ProductListAPI.csproj ├── ProductListAPI.csproj.user ├── Properties └── AssemblyInfo.cs ├── Web.Debug.config ├── Web.Release.config ├── Web.config ├── apiapp.json └── packages.config /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerApps-Azure-Lab/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerApps-Azure-Lab/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerApps-Azure-Lab/HEAD/LICENSE -------------------------------------------------------------------------------- /Lab Resources/Build Managed Solution.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerApps-Azure-Lab/HEAD/Lab Resources/Build Managed Solution.json -------------------------------------------------------------------------------- /Lab Resources/Deploy to Production.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerApps-Azure-Lab/HEAD/Lab Resources/Deploy to Production.json -------------------------------------------------------------------------------- /Lab Resources/Export From Dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerApps-Azure-Lab/HEAD/Lab Resources/Export From Dev.json -------------------------------------------------------------------------------- /Lab Resources/Hands-on with Power Apps and Azure.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerApps-Azure-Lab/HEAD/Lab Resources/Hands-on with Power Apps and Azure.pptx -------------------------------------------------------------------------------- /Lab Resources/Hands-on with PowerApps and Azure-Lab Document.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerApps-Azure-Lab/HEAD/Lab Resources/Hands-on with PowerApps and Azure-Lab Document.docx -------------------------------------------------------------------------------- /Lab Resources/Hands-on with PowerApps and Azure-Lab Document.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerApps-Azure-Lab/HEAD/Lab Resources/Hands-on with PowerApps and Azure-Lab Document.pdf -------------------------------------------------------------------------------- /Lab Resources/Product.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerApps-Azure-Lab/HEAD/Lab Resources/Product.svg -------------------------------------------------------------------------------- /Lab Resources/Products_list_icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerApps-Azure-Lab/HEAD/Lab Resources/Products_list_icon.jpg -------------------------------------------------------------------------------- /Lab Resources/Swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerApps-Azure-Lab/HEAD/Lab Resources/Swagger.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerApps-Azure-Lab/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerApps-Azure-Lab/HEAD/SECURITY.md -------------------------------------------------------------------------------- /src/ProductListAPI.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerApps-Azure-Lab/HEAD/src/ProductListAPI.sln -------------------------------------------------------------------------------- /src/ProductListAPI/App_Start/GenericStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerApps-Azure-Lab/HEAD/src/ProductListAPI/App_Start/GenericStorage.cs -------------------------------------------------------------------------------- /src/ProductListAPI/App_Start/SwaggerConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerApps-Azure-Lab/HEAD/src/ProductListAPI/App_Start/SwaggerConfig.cs -------------------------------------------------------------------------------- /src/ProductListAPI/App_Start/WebApiConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerApps-Azure-Lab/HEAD/src/ProductListAPI/App_Start/WebApiConfig.cs -------------------------------------------------------------------------------- /src/ProductListAPI/Controllers/ProductsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerApps-Azure-Lab/HEAD/src/ProductListAPI/Controllers/ProductsController.cs -------------------------------------------------------------------------------- /src/ProductListAPI/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerApps-Azure-Lab/HEAD/src/ProductListAPI/Global.asax -------------------------------------------------------------------------------- /src/ProductListAPI/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerApps-Azure-Lab/HEAD/src/ProductListAPI/Global.asax.cs -------------------------------------------------------------------------------- /src/ProductListAPI/Models/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerApps-Azure-Lab/HEAD/src/ProductListAPI/Models/Product.cs -------------------------------------------------------------------------------- /src/ProductListAPI/ProductListAPI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerApps-Azure-Lab/HEAD/src/ProductListAPI/ProductListAPI.csproj -------------------------------------------------------------------------------- /src/ProductListAPI/ProductListAPI.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerApps-Azure-Lab/HEAD/src/ProductListAPI/ProductListAPI.csproj.user -------------------------------------------------------------------------------- /src/ProductListAPI/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerApps-Azure-Lab/HEAD/src/ProductListAPI/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/ProductListAPI/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerApps-Azure-Lab/HEAD/src/ProductListAPI/Web.Debug.config -------------------------------------------------------------------------------- /src/ProductListAPI/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerApps-Azure-Lab/HEAD/src/ProductListAPI/Web.Release.config -------------------------------------------------------------------------------- /src/ProductListAPI/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerApps-Azure-Lab/HEAD/src/ProductListAPI/Web.config -------------------------------------------------------------------------------- /src/ProductListAPI/apiapp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerApps-Azure-Lab/HEAD/src/ProductListAPI/apiapp.json -------------------------------------------------------------------------------- /src/ProductListAPI/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerApps-Azure-Lab/HEAD/src/ProductListAPI/packages.config --------------------------------------------------------------------------------