├── .editorconfig ├── .gitattributes ├── .github └── workflows │ └── wip.yml ├── .gitignore ├── Congo.sln ├── README.md └── src ├── Congo.Blazor ├── App.razor ├── Congo.Blazor.csproj ├── Pages │ ├── Counter.razor │ ├── FetchData.razor │ ├── Index.razor │ └── ProductAdd.razor ├── Program.cs ├── Properties │ └── launchSettings.json ├── Shared │ ├── AddProductDialog.razor │ ├── MainLayout.razor │ ├── MainLayout.razor.css │ ├── NavMenu.razor │ ├── NavMenu.razor.css │ └── SurveyPrompt.razor ├── _Imports.razor └── wwwroot │ ├── css │ ├── app.css │ └── open-iconic │ │ ├── FONT-LICENSE │ │ ├── ICON-LICENSE │ │ ├── README.md │ │ └── font │ │ ├── css │ │ └── open-iconic-bootstrap.min.css │ │ └── fonts │ │ ├── open-iconic.eot │ │ ├── open-iconic.otf │ │ ├── open-iconic.svg │ │ ├── open-iconic.ttf │ │ └── open-iconic.woff │ ├── favicon.ico │ ├── index.html │ └── sample-data │ └── weather.json ├── Congo.Contracts ├── Clients │ ├── ICongoSellerClient.cs │ └── ICongoUserClient.cs ├── Congo.Contracts.csproj ├── Requests │ └── Products │ │ └── InsertProductRequest.cs └── Responses │ ├── Cart │ ├── CartItemResponse.cs │ └── CartResponse.cs │ ├── Orders │ └── OrderConfirmationResponse.cs │ └── Products │ └── ProductResponse.cs ├── Congo.RazorPages ├── Congo.RazorPages.csproj ├── Extensions │ └── ServicesExtensions.cs ├── Models │ └── Product.cs ├── Pages │ ├── Error.cshtml │ ├── Error.cshtml.cs │ ├── Index.cshtml │ ├── Index.cshtml.cs │ ├── OrderSuccessful.cshtml │ ├── OrderSuccessful.cshtml.cs │ ├── Privacy.cshtml │ ├── Privacy.cshtml.cs │ ├── Products.cshtml │ ├── Products.cshtml.cs │ ├── Shared │ │ ├── _Layout.cshtml │ │ └── _ValidationScriptsPartial.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml ├── Program.cs ├── Properties │ └── launchSettings.json ├── Services │ ├── IProductsService.cs │ └── ProductsService.cs ├── Startup.cs ├── appsettings.Development.json ├── appsettings.json └── wwwroot │ ├── css │ └── site.css │ ├── favicon.ico │ ├── js │ └── site.js │ └── lib │ ├── bootstrap │ ├── LICENSE │ └── dist │ │ ├── css │ │ ├── bootstrap-grid.css │ │ ├── bootstrap-grid.css.map │ │ ├── bootstrap-grid.min.css │ │ ├── bootstrap-grid.min.css.map │ │ ├── bootstrap-reboot.css │ │ ├── bootstrap-reboot.css.map │ │ ├── bootstrap-reboot.min.css │ │ ├── bootstrap-reboot.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ │ └── js │ │ ├── bootstrap.bundle.js │ │ ├── bootstrap.bundle.js.map │ │ ├── bootstrap.bundle.min.js │ │ ├── bootstrap.bundle.min.js.map │ │ ├── bootstrap.js │ │ ├── bootstrap.js.map │ │ ├── bootstrap.min.js │ │ └── bootstrap.min.js.map │ ├── jquery-validation-unobtrusive │ ├── LICENSE.txt │ ├── jquery.validate.unobtrusive.js │ └── jquery.validate.unobtrusive.min.js │ ├── jquery-validation │ ├── LICENSE.md │ └── dist │ │ ├── additional-methods.js │ │ ├── additional-methods.min.js │ │ ├── jquery.validate.js │ │ └── jquery.validate.min.js │ └── jquery │ ├── LICENSE.txt │ └── dist │ ├── jquery.js │ ├── jquery.min.js │ └── jquery.min.map ├── Congo.WebApi.Tests ├── Congo.WebApi.Tests.csproj └── Controllers │ ├── CartControllerTests.cs │ ├── ProductsControllerTests.cs │ └── SellerProductsControllerTests.cs └── Congo.WebApi ├── Congo.WebApi.csproj ├── Controllers ├── CartController.cs ├── ProductsController.cs ├── SellerProductsController.cs └── WeatherForecastController.cs ├── Data ├── CartAccess │ ├── AddToCartHandler.cs │ ├── CartCommands.cs │ ├── CartQueries.cs │ └── GetCartHandler.cs ├── Configurations │ ├── CartItemEntityTypeConfig.cs │ ├── OrderItemEntityTypeConfig.cs │ └── ProductEntityTypeConfiguration.cs ├── CongoContext.cs ├── Migrations │ ├── 20211004101329_InitialMigration.Designer.cs │ ├── 20211004101329_InitialMigration.cs │ ├── 20211024091259_AddedOrderTable.Designer.cs │ ├── 20211024091259_AddedOrderTable.cs │ ├── 20211104174956_CartAndCartItemTable.Designer.cs │ ├── 20211104174956_CartAndCartItemTable.cs │ ├── 20211104175047_SeedProducts.Designer.cs │ ├── 20211104175047_SeedProducts.cs │ ├── 20211124222011_rename cart table.Designer.cs │ ├── 20211124222011_rename cart table.cs │ └── CongoContextModelSnapshot.cs ├── Models │ ├── Cart.cs │ ├── CartItem.cs │ ├── Order.cs │ ├── OrderItem.cs │ └── Product.cs ├── ProductAccess │ ├── GetProductListHandler.cs │ ├── InsertProductHandler.cs │ ├── ProductCommands.cs │ ├── ProductQueries.cs │ └── PurchaseProductHandler.cs └── products.json ├── Extensions ├── MapperExtensions.cs ├── MathExtensions.cs ├── ModelBuilderExtensions.cs └── ServicesExtensions.cs ├── Program.cs ├── Properties └── launchSettings.json ├── Startup.cs ├── Validators └── InsertProductRequestValidator.cs ├── WeatherForecast.cs ├── appsettings.Development.json └── appsettings.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/wip.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/.github/workflows/wip.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/.gitignore -------------------------------------------------------------------------------- /Congo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/Congo.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/README.md -------------------------------------------------------------------------------- /src/Congo.Blazor/App.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.Blazor/App.razor -------------------------------------------------------------------------------- /src/Congo.Blazor/Congo.Blazor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.Blazor/Congo.Blazor.csproj -------------------------------------------------------------------------------- /src/Congo.Blazor/Pages/Counter.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.Blazor/Pages/Counter.razor -------------------------------------------------------------------------------- /src/Congo.Blazor/Pages/FetchData.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.Blazor/Pages/FetchData.razor -------------------------------------------------------------------------------- /src/Congo.Blazor/Pages/Index.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.Blazor/Pages/Index.razor -------------------------------------------------------------------------------- /src/Congo.Blazor/Pages/ProductAdd.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.Blazor/Pages/ProductAdd.razor -------------------------------------------------------------------------------- /src/Congo.Blazor/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.Blazor/Program.cs -------------------------------------------------------------------------------- /src/Congo.Blazor/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.Blazor/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Congo.Blazor/Shared/AddProductDialog.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.Blazor/Shared/AddProductDialog.razor -------------------------------------------------------------------------------- /src/Congo.Blazor/Shared/MainLayout.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.Blazor/Shared/MainLayout.razor -------------------------------------------------------------------------------- /src/Congo.Blazor/Shared/MainLayout.razor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.Blazor/Shared/MainLayout.razor.css -------------------------------------------------------------------------------- /src/Congo.Blazor/Shared/NavMenu.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.Blazor/Shared/NavMenu.razor -------------------------------------------------------------------------------- /src/Congo.Blazor/Shared/NavMenu.razor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.Blazor/Shared/NavMenu.razor.css -------------------------------------------------------------------------------- /src/Congo.Blazor/Shared/SurveyPrompt.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.Blazor/Shared/SurveyPrompt.razor -------------------------------------------------------------------------------- /src/Congo.Blazor/_Imports.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.Blazor/_Imports.razor -------------------------------------------------------------------------------- /src/Congo.Blazor/wwwroot/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.Blazor/wwwroot/css/app.css -------------------------------------------------------------------------------- /src/Congo.Blazor/wwwroot/css/open-iconic/FONT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.Blazor/wwwroot/css/open-iconic/FONT-LICENSE -------------------------------------------------------------------------------- /src/Congo.Blazor/wwwroot/css/open-iconic/ICON-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.Blazor/wwwroot/css/open-iconic/ICON-LICENSE -------------------------------------------------------------------------------- /src/Congo.Blazor/wwwroot/css/open-iconic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.Blazor/wwwroot/css/open-iconic/README.md -------------------------------------------------------------------------------- /src/Congo.Blazor/wwwroot/css/open-iconic/font/css/open-iconic-bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.Blazor/wwwroot/css/open-iconic/font/css/open-iconic-bootstrap.min.css -------------------------------------------------------------------------------- /src/Congo.Blazor/wwwroot/css/open-iconic/font/fonts/open-iconic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.Blazor/wwwroot/css/open-iconic/font/fonts/open-iconic.eot -------------------------------------------------------------------------------- /src/Congo.Blazor/wwwroot/css/open-iconic/font/fonts/open-iconic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.Blazor/wwwroot/css/open-iconic/font/fonts/open-iconic.otf -------------------------------------------------------------------------------- /src/Congo.Blazor/wwwroot/css/open-iconic/font/fonts/open-iconic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.Blazor/wwwroot/css/open-iconic/font/fonts/open-iconic.svg -------------------------------------------------------------------------------- /src/Congo.Blazor/wwwroot/css/open-iconic/font/fonts/open-iconic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.Blazor/wwwroot/css/open-iconic/font/fonts/open-iconic.ttf -------------------------------------------------------------------------------- /src/Congo.Blazor/wwwroot/css/open-iconic/font/fonts/open-iconic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.Blazor/wwwroot/css/open-iconic/font/fonts/open-iconic.woff -------------------------------------------------------------------------------- /src/Congo.Blazor/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.Blazor/wwwroot/favicon.ico -------------------------------------------------------------------------------- /src/Congo.Blazor/wwwroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.Blazor/wwwroot/index.html -------------------------------------------------------------------------------- /src/Congo.Blazor/wwwroot/sample-data/weather.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.Blazor/wwwroot/sample-data/weather.json -------------------------------------------------------------------------------- /src/Congo.Contracts/Clients/ICongoSellerClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.Contracts/Clients/ICongoSellerClient.cs -------------------------------------------------------------------------------- /src/Congo.Contracts/Clients/ICongoUserClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.Contracts/Clients/ICongoUserClient.cs -------------------------------------------------------------------------------- /src/Congo.Contracts/Congo.Contracts.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.Contracts/Congo.Contracts.csproj -------------------------------------------------------------------------------- /src/Congo.Contracts/Requests/Products/InsertProductRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.Contracts/Requests/Products/InsertProductRequest.cs -------------------------------------------------------------------------------- /src/Congo.Contracts/Responses/Cart/CartItemResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.Contracts/Responses/Cart/CartItemResponse.cs -------------------------------------------------------------------------------- /src/Congo.Contracts/Responses/Cart/CartResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.Contracts/Responses/Cart/CartResponse.cs -------------------------------------------------------------------------------- /src/Congo.Contracts/Responses/Orders/OrderConfirmationResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.Contracts/Responses/Orders/OrderConfirmationResponse.cs -------------------------------------------------------------------------------- /src/Congo.Contracts/Responses/Products/ProductResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.Contracts/Responses/Products/ProductResponse.cs -------------------------------------------------------------------------------- /src/Congo.RazorPages/Congo.RazorPages.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.RazorPages/Congo.RazorPages.csproj -------------------------------------------------------------------------------- /src/Congo.RazorPages/Extensions/ServicesExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.RazorPages/Extensions/ServicesExtensions.cs -------------------------------------------------------------------------------- /src/Congo.RazorPages/Models/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.RazorPages/Models/Product.cs -------------------------------------------------------------------------------- /src/Congo.RazorPages/Pages/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.RazorPages/Pages/Error.cshtml -------------------------------------------------------------------------------- /src/Congo.RazorPages/Pages/Error.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.RazorPages/Pages/Error.cshtml.cs -------------------------------------------------------------------------------- /src/Congo.RazorPages/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.RazorPages/Pages/Index.cshtml -------------------------------------------------------------------------------- /src/Congo.RazorPages/Pages/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.RazorPages/Pages/Index.cshtml.cs -------------------------------------------------------------------------------- /src/Congo.RazorPages/Pages/OrderSuccessful.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.RazorPages/Pages/OrderSuccessful.cshtml -------------------------------------------------------------------------------- /src/Congo.RazorPages/Pages/OrderSuccessful.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.RazorPages/Pages/OrderSuccessful.cshtml.cs -------------------------------------------------------------------------------- /src/Congo.RazorPages/Pages/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.RazorPages/Pages/Privacy.cshtml -------------------------------------------------------------------------------- /src/Congo.RazorPages/Pages/Privacy.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.RazorPages/Pages/Privacy.cshtml.cs -------------------------------------------------------------------------------- /src/Congo.RazorPages/Pages/Products.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.RazorPages/Pages/Products.cshtml -------------------------------------------------------------------------------- /src/Congo.RazorPages/Pages/Products.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.RazorPages/Pages/Products.cshtml.cs -------------------------------------------------------------------------------- /src/Congo.RazorPages/Pages/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.RazorPages/Pages/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /src/Congo.RazorPages/Pages/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.RazorPages/Pages/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /src/Congo.RazorPages/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.RazorPages/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /src/Congo.RazorPages/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.RazorPages/Pages/_ViewStart.cshtml -------------------------------------------------------------------------------- /src/Congo.RazorPages/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.RazorPages/Program.cs -------------------------------------------------------------------------------- /src/Congo.RazorPages/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.RazorPages/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Congo.RazorPages/Services/IProductsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.RazorPages/Services/IProductsService.cs -------------------------------------------------------------------------------- /src/Congo.RazorPages/Services/ProductsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.RazorPages/Services/ProductsService.cs -------------------------------------------------------------------------------- /src/Congo.RazorPages/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.RazorPages/Startup.cs -------------------------------------------------------------------------------- /src/Congo.RazorPages/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.RazorPages/appsettings.Development.json -------------------------------------------------------------------------------- /src/Congo.RazorPages/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.RazorPages/appsettings.json -------------------------------------------------------------------------------- /src/Congo.RazorPages/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.RazorPages/wwwroot/css/site.css -------------------------------------------------------------------------------- /src/Congo.RazorPages/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.RazorPages/wwwroot/favicon.ico -------------------------------------------------------------------------------- /src/Congo.RazorPages/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.RazorPages/wwwroot/js/site.js -------------------------------------------------------------------------------- /src/Congo.RazorPages/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.RazorPages/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /src/Congo.RazorPages/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.RazorPages/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css -------------------------------------------------------------------------------- /src/Congo.RazorPages/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.RazorPages/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /src/Congo.RazorPages/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.RazorPages/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /src/Congo.RazorPages/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.RazorPages/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /src/Congo.RazorPages/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.RazorPages/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /src/Congo.RazorPages/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.RazorPages/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /src/Congo.RazorPages/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.RazorPages/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /src/Congo.RazorPages/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.RazorPages/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /src/Congo.RazorPages/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.RazorPages/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /src/Congo.RazorPages/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.RazorPages/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /src/Congo.RazorPages/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.RazorPages/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /src/Congo.RazorPages/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.RazorPages/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /src/Congo.RazorPages/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.RazorPages/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /src/Congo.RazorPages/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.RazorPages/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /src/Congo.RazorPages/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.RazorPages/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /src/Congo.RazorPages/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.RazorPages/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /src/Congo.RazorPages/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.RazorPages/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /src/Congo.RazorPages/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.RazorPages/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map -------------------------------------------------------------------------------- /src/Congo.RazorPages/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.RazorPages/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /src/Congo.RazorPages/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.RazorPages/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /src/Congo.RazorPages/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.RazorPages/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt -------------------------------------------------------------------------------- /src/Congo.RazorPages/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.RazorPages/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /src/Congo.RazorPages/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.RazorPages/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /src/Congo.RazorPages/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.RazorPages/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /src/Congo.RazorPages/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.RazorPages/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /src/Congo.RazorPages/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.RazorPages/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /src/Congo.RazorPages/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.RazorPages/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /src/Congo.RazorPages/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.RazorPages/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /src/Congo.RazorPages/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.RazorPages/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /src/Congo.RazorPages/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.RazorPages/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /src/Congo.RazorPages/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.RazorPages/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /src/Congo.RazorPages/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.RazorPages/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /src/Congo.WebApi.Tests/Congo.WebApi.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.WebApi.Tests/Congo.WebApi.Tests.csproj -------------------------------------------------------------------------------- /src/Congo.WebApi.Tests/Controllers/CartControllerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.WebApi.Tests/Controllers/CartControllerTests.cs -------------------------------------------------------------------------------- /src/Congo.WebApi.Tests/Controllers/ProductsControllerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.WebApi.Tests/Controllers/ProductsControllerTests.cs -------------------------------------------------------------------------------- /src/Congo.WebApi.Tests/Controllers/SellerProductsControllerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.WebApi.Tests/Controllers/SellerProductsControllerTests.cs -------------------------------------------------------------------------------- /src/Congo.WebApi/Congo.WebApi.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.WebApi/Congo.WebApi.csproj -------------------------------------------------------------------------------- /src/Congo.WebApi/Controllers/CartController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.WebApi/Controllers/CartController.cs -------------------------------------------------------------------------------- /src/Congo.WebApi/Controllers/ProductsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.WebApi/Controllers/ProductsController.cs -------------------------------------------------------------------------------- /src/Congo.WebApi/Controllers/SellerProductsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.WebApi/Controllers/SellerProductsController.cs -------------------------------------------------------------------------------- /src/Congo.WebApi/Controllers/WeatherForecastController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.WebApi/Controllers/WeatherForecastController.cs -------------------------------------------------------------------------------- /src/Congo.WebApi/Data/CartAccess/AddToCartHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.WebApi/Data/CartAccess/AddToCartHandler.cs -------------------------------------------------------------------------------- /src/Congo.WebApi/Data/CartAccess/CartCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.WebApi/Data/CartAccess/CartCommands.cs -------------------------------------------------------------------------------- /src/Congo.WebApi/Data/CartAccess/CartQueries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.WebApi/Data/CartAccess/CartQueries.cs -------------------------------------------------------------------------------- /src/Congo.WebApi/Data/CartAccess/GetCartHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.WebApi/Data/CartAccess/GetCartHandler.cs -------------------------------------------------------------------------------- /src/Congo.WebApi/Data/Configurations/CartItemEntityTypeConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.WebApi/Data/Configurations/CartItemEntityTypeConfig.cs -------------------------------------------------------------------------------- /src/Congo.WebApi/Data/Configurations/OrderItemEntityTypeConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.WebApi/Data/Configurations/OrderItemEntityTypeConfig.cs -------------------------------------------------------------------------------- /src/Congo.WebApi/Data/Configurations/ProductEntityTypeConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.WebApi/Data/Configurations/ProductEntityTypeConfiguration.cs -------------------------------------------------------------------------------- /src/Congo.WebApi/Data/CongoContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.WebApi/Data/CongoContext.cs -------------------------------------------------------------------------------- /src/Congo.WebApi/Data/Migrations/20211004101329_InitialMigration.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.WebApi/Data/Migrations/20211004101329_InitialMigration.Designer.cs -------------------------------------------------------------------------------- /src/Congo.WebApi/Data/Migrations/20211004101329_InitialMigration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.WebApi/Data/Migrations/20211004101329_InitialMigration.cs -------------------------------------------------------------------------------- /src/Congo.WebApi/Data/Migrations/20211024091259_AddedOrderTable.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.WebApi/Data/Migrations/20211024091259_AddedOrderTable.Designer.cs -------------------------------------------------------------------------------- /src/Congo.WebApi/Data/Migrations/20211024091259_AddedOrderTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.WebApi/Data/Migrations/20211024091259_AddedOrderTable.cs -------------------------------------------------------------------------------- /src/Congo.WebApi/Data/Migrations/20211104174956_CartAndCartItemTable.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.WebApi/Data/Migrations/20211104174956_CartAndCartItemTable.Designer.cs -------------------------------------------------------------------------------- /src/Congo.WebApi/Data/Migrations/20211104174956_CartAndCartItemTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.WebApi/Data/Migrations/20211104174956_CartAndCartItemTable.cs -------------------------------------------------------------------------------- /src/Congo.WebApi/Data/Migrations/20211104175047_SeedProducts.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.WebApi/Data/Migrations/20211104175047_SeedProducts.Designer.cs -------------------------------------------------------------------------------- /src/Congo.WebApi/Data/Migrations/20211104175047_SeedProducts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.WebApi/Data/Migrations/20211104175047_SeedProducts.cs -------------------------------------------------------------------------------- /src/Congo.WebApi/Data/Migrations/20211124222011_rename cart table.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.WebApi/Data/Migrations/20211124222011_rename cart table.Designer.cs -------------------------------------------------------------------------------- /src/Congo.WebApi/Data/Migrations/20211124222011_rename cart table.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.WebApi/Data/Migrations/20211124222011_rename cart table.cs -------------------------------------------------------------------------------- /src/Congo.WebApi/Data/Migrations/CongoContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.WebApi/Data/Migrations/CongoContextModelSnapshot.cs -------------------------------------------------------------------------------- /src/Congo.WebApi/Data/Models/Cart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.WebApi/Data/Models/Cart.cs -------------------------------------------------------------------------------- /src/Congo.WebApi/Data/Models/CartItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.WebApi/Data/Models/CartItem.cs -------------------------------------------------------------------------------- /src/Congo.WebApi/Data/Models/Order.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.WebApi/Data/Models/Order.cs -------------------------------------------------------------------------------- /src/Congo.WebApi/Data/Models/OrderItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.WebApi/Data/Models/OrderItem.cs -------------------------------------------------------------------------------- /src/Congo.WebApi/Data/Models/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.WebApi/Data/Models/Product.cs -------------------------------------------------------------------------------- /src/Congo.WebApi/Data/ProductAccess/GetProductListHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.WebApi/Data/ProductAccess/GetProductListHandler.cs -------------------------------------------------------------------------------- /src/Congo.WebApi/Data/ProductAccess/InsertProductHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.WebApi/Data/ProductAccess/InsertProductHandler.cs -------------------------------------------------------------------------------- /src/Congo.WebApi/Data/ProductAccess/ProductCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.WebApi/Data/ProductAccess/ProductCommands.cs -------------------------------------------------------------------------------- /src/Congo.WebApi/Data/ProductAccess/ProductQueries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.WebApi/Data/ProductAccess/ProductQueries.cs -------------------------------------------------------------------------------- /src/Congo.WebApi/Data/ProductAccess/PurchaseProductHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.WebApi/Data/ProductAccess/PurchaseProductHandler.cs -------------------------------------------------------------------------------- /src/Congo.WebApi/Data/products.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.WebApi/Data/products.json -------------------------------------------------------------------------------- /src/Congo.WebApi/Extensions/MapperExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.WebApi/Extensions/MapperExtensions.cs -------------------------------------------------------------------------------- /src/Congo.WebApi/Extensions/MathExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.WebApi/Extensions/MathExtensions.cs -------------------------------------------------------------------------------- /src/Congo.WebApi/Extensions/ModelBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.WebApi/Extensions/ModelBuilderExtensions.cs -------------------------------------------------------------------------------- /src/Congo.WebApi/Extensions/ServicesExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.WebApi/Extensions/ServicesExtensions.cs -------------------------------------------------------------------------------- /src/Congo.WebApi/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.WebApi/Program.cs -------------------------------------------------------------------------------- /src/Congo.WebApi/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.WebApi/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Congo.WebApi/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.WebApi/Startup.cs -------------------------------------------------------------------------------- /src/Congo.WebApi/Validators/InsertProductRequestValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.WebApi/Validators/InsertProductRequestValidator.cs -------------------------------------------------------------------------------- /src/Congo.WebApi/WeatherForecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.WebApi/WeatherForecast.cs -------------------------------------------------------------------------------- /src/Congo.WebApi/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.WebApi/appsettings.Development.json -------------------------------------------------------------------------------- /src/Congo.WebApi/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code2Gether-Discord/Congo/HEAD/src/Congo.WebApi/appsettings.json --------------------------------------------------------------------------------