gitextract_lulu55kd/ ├── .gitignore ├── CONTRIBUTING.md ├── Docs/ │ └── architecture.md ├── LICENSE ├── README.md └── ReferenceApp/ ├── Common/ │ ├── ActorMessageId.cs │ ├── Common.csproj │ ├── HashUtil.cs │ ├── Properties/ │ │ └── AssemblyInfo.cs │ ├── ServiceUriBuilder.cs │ └── packages.config ├── CustomerOrder.Actor/ │ ├── ActorEventSource.cs │ ├── App.config │ ├── CustomerOrder.Actor.csproj │ ├── CustomerOrderActor.cs │ ├── CustomerOrderReminderNames.cs │ ├── PackageRoot/ │ │ ├── Config/ │ │ │ └── Settings.xml │ │ └── ServiceManifest.xml │ ├── Program.cs │ ├── Properties/ │ │ └── AssemblyInfo.cs │ └── packages.config ├── CustomerOrder.Domain/ │ ├── CustomerOrder.Domain.csproj │ ├── CustomerOrderItem.cs │ ├── CustomerOrderStatus.cs │ ├── ICustomerOrderActor.cs │ ├── Properties/ │ │ └── AssemblyInfo.cs │ ├── app.config │ └── packages.config ├── CustomerOrder.UnitTests/ │ ├── CustomerOrder.UnitTests.csproj │ ├── CustomerOrderActorTests.cs │ ├── Properties/ │ │ └── AssemblyInfo.cs │ ├── app.config │ └── packages.config ├── Inventory.Domain/ │ ├── IInventoryService.cs │ ├── Inventory.Domain.csproj │ ├── InventoryItem.cs │ ├── InventoryItemId.cs │ ├── InventoryItemView.cs │ ├── Properties/ │ │ └── AssemblyInfo.cs │ └── packages.config ├── Inventory.Service/ │ ├── App.config │ ├── AzureBackupStore.cs │ ├── IBackupStore.cs │ ├── Inventory.Service.csproj │ ├── InventoryService.cs │ ├── LocalBackupStore.cs │ ├── PackageRoot/ │ │ ├── Config/ │ │ │ └── Settings.xml │ │ └── ServiceManifest.xml │ ├── Program.cs │ ├── Properties/ │ │ └── AssemblyInfo.cs │ ├── ServiceEventSource.cs │ ├── StatefulServiceParameters.cs │ └── packages.config ├── Inventory.UnitTests/ │ ├── Inventory.UnitTests.csproj │ ├── InventoryServiceTests.cs │ ├── Properties/ │ │ └── AssemblyInfo.cs │ ├── app.config │ └── packages.config ├── Mocks/ │ ├── MockActorStateManager.cs │ ├── MockAsyncEnumerable.cs │ ├── MockCodePackageActivationContext.cs │ ├── MockInventoryService.cs │ ├── MockReliableDictionary.cs │ ├── MockReliableQueue.cs │ ├── MockReliableStateManager.cs │ ├── MockServiceProxy.cs │ ├── MockServiceProxyFactory.cs │ ├── MockTransaction.cs │ ├── Mocks.csproj │ ├── Properties/ │ │ └── AssemblyInfo.cs │ ├── app.config │ └── packages.config ├── Nuget.Config ├── RestockRequest.Actor/ │ ├── ActorEventSource.cs │ ├── App.config │ ├── PackageRoot/ │ │ ├── Config/ │ │ │ └── Settings.xml │ │ └── ServiceManifest.xml │ ├── Properties/ │ │ └── AssemblyInfo.cs │ ├── RestockRequest.Actor.csproj │ ├── RestockRequestActor.cs │ ├── RestockRequestActorState.cs │ ├── RestockRequestReminderNames.cs │ ├── ServiceHost.cs │ └── packages.config ├── RestockRequest.Domain/ │ ├── IRestockRequestActor.cs │ ├── IRestockRequestEvents.cs │ ├── Properties/ │ │ └── AssemblyInfo.cs │ ├── RestockRequest.Domain.csproj │ ├── RestockRequest.cs │ ├── RestockRequestStatus.cs │ ├── app.config │ └── packages.config ├── RestockRequestManager.Domain/ │ ├── IRestockRequestManager.cs │ ├── Properties/ │ │ └── AssemblyInfo.cs │ ├── RestockRequestManager.Domain.csproj │ ├── app.config │ └── packages.config ├── RestockRequestManager.Service/ │ ├── App.config │ ├── PackageRoot/ │ │ ├── Config/ │ │ │ └── Settings.xml │ │ └── ServiceManifest.xml │ ├── Program.cs │ ├── Properties/ │ │ └── AssemblyInfo.cs │ ├── RestockRequestManager.Service.csproj │ ├── RestockRequestManagerService.cs │ ├── ServiceEventSource.cs │ └── packages.config ├── Web.Service/ │ ├── .bowerrc │ ├── App.config │ ├── Controllers/ │ │ ├── HomeController.cs │ │ ├── InventoryController.cs │ │ ├── OrdersController.cs │ │ └── StoreController.cs │ ├── PackageRoot/ │ │ ├── Config/ │ │ │ └── Settings.xml │ │ └── ServiceManifest.xml │ ├── Program.cs │ ├── Properties/ │ │ └── launchSettings.json │ ├── ServiceEventSource.cs │ ├── Startup.cs │ ├── Views/ │ │ ├── Home/ │ │ │ ├── Admin.cshtml │ │ │ ├── Index.cshtml │ │ │ └── OrderConfirmation.cshtml │ │ ├── Shared/ │ │ │ ├── Error.cshtml │ │ │ ├── _Layout.cshtml │ │ │ └── _ValidationScriptsPartial.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── Web.Service.csproj │ ├── WebService.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── bower.json │ ├── bundleconfig.json │ └── wwwroot/ │ ├── css/ │ │ └── site.css │ └── js/ │ └── angular-index.js ├── WebReferenceApp.sln └── WebReferenceApplication/ ├── 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 ├── WebReferenceApplication.sfproj ├── app.config └── packages.config