├── .github └── workflows │ └── gitleaks.yaml ├── InventoryService ├── Controllers │ ├── ProductsController.cs │ └── TokenController.cs ├── InventoryService.csproj ├── InventoryService.sln ├── Models │ ├── InventoryContext.cs │ ├── Products.cs │ └── UserInfo.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── Startup.cs ├── appsettings.Development.json └── appsettings.json └── README.md /.github/workflows/gitleaks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionExamples/inventory-management-rest-service-asp-dotnet-core/HEAD/.github/workflows/gitleaks.yaml -------------------------------------------------------------------------------- /InventoryService/Controllers/ProductsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionExamples/inventory-management-rest-service-asp-dotnet-core/HEAD/InventoryService/Controllers/ProductsController.cs -------------------------------------------------------------------------------- /InventoryService/Controllers/TokenController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionExamples/inventory-management-rest-service-asp-dotnet-core/HEAD/InventoryService/Controllers/TokenController.cs -------------------------------------------------------------------------------- /InventoryService/InventoryService.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionExamples/inventory-management-rest-service-asp-dotnet-core/HEAD/InventoryService/InventoryService.csproj -------------------------------------------------------------------------------- /InventoryService/InventoryService.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionExamples/inventory-management-rest-service-asp-dotnet-core/HEAD/InventoryService/InventoryService.sln -------------------------------------------------------------------------------- /InventoryService/Models/InventoryContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionExamples/inventory-management-rest-service-asp-dotnet-core/HEAD/InventoryService/Models/InventoryContext.cs -------------------------------------------------------------------------------- /InventoryService/Models/Products.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionExamples/inventory-management-rest-service-asp-dotnet-core/HEAD/InventoryService/Models/Products.cs -------------------------------------------------------------------------------- /InventoryService/Models/UserInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionExamples/inventory-management-rest-service-asp-dotnet-core/HEAD/InventoryService/Models/UserInfo.cs -------------------------------------------------------------------------------- /InventoryService/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionExamples/inventory-management-rest-service-asp-dotnet-core/HEAD/InventoryService/Program.cs -------------------------------------------------------------------------------- /InventoryService/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionExamples/inventory-management-rest-service-asp-dotnet-core/HEAD/InventoryService/Properties/launchSettings.json -------------------------------------------------------------------------------- /InventoryService/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionExamples/inventory-management-rest-service-asp-dotnet-core/HEAD/InventoryService/Startup.cs -------------------------------------------------------------------------------- /InventoryService/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionExamples/inventory-management-rest-service-asp-dotnet-core/HEAD/InventoryService/appsettings.Development.json -------------------------------------------------------------------------------- /InventoryService/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionExamples/inventory-management-rest-service-asp-dotnet-core/HEAD/InventoryService/appsettings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionExamples/inventory-management-rest-service-asp-dotnet-core/HEAD/README.md --------------------------------------------------------------------------------