├── .gitignore ├── LICENSE ├── README.md └── src ├── .nuget ├── NuGet.Config ├── NuGet.exe └── NuGet.targets ├── CQRSShop.Contracts ├── CQRSShop.Contracts.Helpers.fs ├── CQRSShop.Contracts.fsproj ├── Commands.fs ├── Events.fs └── Types.fs ├── CQRSShop.Domain.Tests ├── BasketTests │ ├── AddItemToBasketTest.cs │ ├── CheckoutBasketTests.cs │ ├── CreateBasketTests.cs │ ├── MakePaymentTests.cs │ └── ProceedCheckoutBasketTests.cs ├── CQRSShop.Domain.Tests.csproj ├── CustomerTests │ ├── CreateCustomerTest.cs │ └── MakeCustomerPreferredTest.cs ├── OrderTests │ └── AllTheOrderTests.cs ├── ProductTests │ └── CreateProductTests.cs ├── Properties │ └── AssemblyInfo.cs ├── TestBase.cs └── packages.config ├── CQRSShop.Domain ├── Aggregates │ ├── Basket.cs │ ├── Customer.cs │ ├── Order.cs │ └── Product.cs ├── CQRSShop.Domain.csproj ├── CommandHandlers │ ├── BasketCommandHandler.cs │ ├── CustomerCommandHandler.cs │ ├── OrderHandler.cs │ └── ProductCommandHandler.cs ├── DomainEntry.cs ├── Exceptions │ ├── CustomerAlreadyExistsException.cs │ └── DuplicateAggregateException.cs └── Properties │ └── AssemblyInfo.cs ├── CQRSShop.Infrastructure ├── AggregateBase.cs ├── CQRSShop.Infrastructure.csproj ├── CommandDispatcher.cs ├── DomainRepositoryBase.cs ├── EventStoreDomainRepository.cs ├── Exceptions │ └── AggregateNotFoundException.cs ├── IAggregate.cs ├── ICommand.cs ├── IDomainRepository.cs ├── IEvent.cs ├── IHandle.cs ├── IdGenerator.cs ├── InMemoryDomainRespository.cs ├── Properties │ └── AssemblyInfo.cs └── packages.config ├── CQRSShop.Search ├── CQRSShop.Search.csproj ├── Class1.cs └── Properties │ └── AssemblyInfo.cs ├── CQRSShop.Service ├── App.config ├── CQRSShop.Service.csproj ├── Documents │ ├── Basket.cs │ ├── Customer.cs │ └── Product.cs ├── EventSerialization.cs ├── EventStoreConnectionWrapper.cs ├── Indexer.cs ├── IndexingServie.cs ├── Program.cs ├── Properties │ └── AssemblyInfo.cs └── packages.config ├── CQRSShop.Web ├── Api │ ├── BasePostEndpoint.cs │ ├── Basket │ │ ├── Checkout │ │ │ └── PostEndpoint.cs │ │ ├── Items │ │ │ └── PostEndpoint.cs │ │ ├── Pay │ │ │ └── PostEndpoint.cs │ │ ├── PostEndpoint.cs │ │ └── Proceed │ │ │ └── PostEndpoint.cs │ ├── Customer │ │ ├── PostEndpoint.cs │ │ └── Preferred │ │ │ └── PostEndpoint.cs │ ├── GetEndpoint.cs │ ├── Order │ │ ├── Approve │ │ │ └── PostEndpoint.cs │ │ ├── Cancel │ │ │ └── PostEndpoint.cs │ │ ├── Ship │ │ │ └── PostEndpoint.cs │ │ └── StartShipping │ │ │ └── PostEndpoint.cs │ └── Product │ │ └── PostEndpoint.cs ├── CQRSShop.Web.csproj ├── Configuration.cs ├── OwinAppSetup.cs ├── Properties │ └── AssemblyInfo.cs ├── Web.Debug.config ├── Web.Release.config ├── Web.config └── packages.config └── CQRSShop.sln /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastoj/CQRSShop/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastoj/CQRSShop/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastoj/CQRSShop/HEAD/README.md -------------------------------------------------------------------------------- /src/.nuget/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastoj/CQRSShop/HEAD/src/.nuget/NuGet.Config -------------------------------------------------------------------------------- /src/.nuget/NuGet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastoj/CQRSShop/HEAD/src/.nuget/NuGet.exe -------------------------------------------------------------------------------- /src/.nuget/NuGet.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastoj/CQRSShop/HEAD/src/.nuget/NuGet.targets -------------------------------------------------------------------------------- /src/CQRSShop.Contracts/CQRSShop.Contracts.Helpers.fs: -------------------------------------------------------------------------------- 1 | module CQRSShop.Contracts.Helpers 2 | 3 | let ToFSharpList x = List.ofSeq x 4 | 5 | -------------------------------------------------------------------------------- /src/CQRSShop.Contracts/CQRSShop.Contracts.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastoj/CQRSShop/HEAD/src/CQRSShop.Contracts/CQRSShop.Contracts.fsproj -------------------------------------------------------------------------------- /src/CQRSShop.Contracts/Commands.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastoj/CQRSShop/HEAD/src/CQRSShop.Contracts/Commands.fs -------------------------------------------------------------------------------- /src/CQRSShop.Contracts/Events.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastoj/CQRSShop/HEAD/src/CQRSShop.Contracts/Events.fs -------------------------------------------------------------------------------- /src/CQRSShop.Contracts/Types.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastoj/CQRSShop/HEAD/src/CQRSShop.Contracts/Types.fs -------------------------------------------------------------------------------- /src/CQRSShop.Domain.Tests/BasketTests/AddItemToBasketTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastoj/CQRSShop/HEAD/src/CQRSShop.Domain.Tests/BasketTests/AddItemToBasketTest.cs -------------------------------------------------------------------------------- /src/CQRSShop.Domain.Tests/BasketTests/CheckoutBasketTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastoj/CQRSShop/HEAD/src/CQRSShop.Domain.Tests/BasketTests/CheckoutBasketTests.cs -------------------------------------------------------------------------------- /src/CQRSShop.Domain.Tests/BasketTests/CreateBasketTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastoj/CQRSShop/HEAD/src/CQRSShop.Domain.Tests/BasketTests/CreateBasketTests.cs -------------------------------------------------------------------------------- /src/CQRSShop.Domain.Tests/BasketTests/MakePaymentTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastoj/CQRSShop/HEAD/src/CQRSShop.Domain.Tests/BasketTests/MakePaymentTests.cs -------------------------------------------------------------------------------- /src/CQRSShop.Domain.Tests/BasketTests/ProceedCheckoutBasketTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastoj/CQRSShop/HEAD/src/CQRSShop.Domain.Tests/BasketTests/ProceedCheckoutBasketTests.cs -------------------------------------------------------------------------------- /src/CQRSShop.Domain.Tests/CQRSShop.Domain.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastoj/CQRSShop/HEAD/src/CQRSShop.Domain.Tests/CQRSShop.Domain.Tests.csproj -------------------------------------------------------------------------------- /src/CQRSShop.Domain.Tests/CustomerTests/CreateCustomerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastoj/CQRSShop/HEAD/src/CQRSShop.Domain.Tests/CustomerTests/CreateCustomerTest.cs -------------------------------------------------------------------------------- /src/CQRSShop.Domain.Tests/CustomerTests/MakeCustomerPreferredTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastoj/CQRSShop/HEAD/src/CQRSShop.Domain.Tests/CustomerTests/MakeCustomerPreferredTest.cs -------------------------------------------------------------------------------- /src/CQRSShop.Domain.Tests/OrderTests/AllTheOrderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastoj/CQRSShop/HEAD/src/CQRSShop.Domain.Tests/OrderTests/AllTheOrderTests.cs -------------------------------------------------------------------------------- /src/CQRSShop.Domain.Tests/ProductTests/CreateProductTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastoj/CQRSShop/HEAD/src/CQRSShop.Domain.Tests/ProductTests/CreateProductTests.cs -------------------------------------------------------------------------------- /src/CQRSShop.Domain.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastoj/CQRSShop/HEAD/src/CQRSShop.Domain.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/CQRSShop.Domain.Tests/TestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastoj/CQRSShop/HEAD/src/CQRSShop.Domain.Tests/TestBase.cs -------------------------------------------------------------------------------- /src/CQRSShop.Domain.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastoj/CQRSShop/HEAD/src/CQRSShop.Domain.Tests/packages.config -------------------------------------------------------------------------------- /src/CQRSShop.Domain/Aggregates/Basket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastoj/CQRSShop/HEAD/src/CQRSShop.Domain/Aggregates/Basket.cs -------------------------------------------------------------------------------- /src/CQRSShop.Domain/Aggregates/Customer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastoj/CQRSShop/HEAD/src/CQRSShop.Domain/Aggregates/Customer.cs -------------------------------------------------------------------------------- /src/CQRSShop.Domain/Aggregates/Order.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastoj/CQRSShop/HEAD/src/CQRSShop.Domain/Aggregates/Order.cs -------------------------------------------------------------------------------- /src/CQRSShop.Domain/Aggregates/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastoj/CQRSShop/HEAD/src/CQRSShop.Domain/Aggregates/Product.cs -------------------------------------------------------------------------------- /src/CQRSShop.Domain/CQRSShop.Domain.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastoj/CQRSShop/HEAD/src/CQRSShop.Domain/CQRSShop.Domain.csproj -------------------------------------------------------------------------------- /src/CQRSShop.Domain/CommandHandlers/BasketCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastoj/CQRSShop/HEAD/src/CQRSShop.Domain/CommandHandlers/BasketCommandHandler.cs -------------------------------------------------------------------------------- /src/CQRSShop.Domain/CommandHandlers/CustomerCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastoj/CQRSShop/HEAD/src/CQRSShop.Domain/CommandHandlers/CustomerCommandHandler.cs -------------------------------------------------------------------------------- /src/CQRSShop.Domain/CommandHandlers/OrderHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastoj/CQRSShop/HEAD/src/CQRSShop.Domain/CommandHandlers/OrderHandler.cs -------------------------------------------------------------------------------- /src/CQRSShop.Domain/CommandHandlers/ProductCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastoj/CQRSShop/HEAD/src/CQRSShop.Domain/CommandHandlers/ProductCommandHandler.cs -------------------------------------------------------------------------------- /src/CQRSShop.Domain/DomainEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastoj/CQRSShop/HEAD/src/CQRSShop.Domain/DomainEntry.cs -------------------------------------------------------------------------------- /src/CQRSShop.Domain/Exceptions/CustomerAlreadyExistsException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastoj/CQRSShop/HEAD/src/CQRSShop.Domain/Exceptions/CustomerAlreadyExistsException.cs -------------------------------------------------------------------------------- /src/CQRSShop.Domain/Exceptions/DuplicateAggregateException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastoj/CQRSShop/HEAD/src/CQRSShop.Domain/Exceptions/DuplicateAggregateException.cs -------------------------------------------------------------------------------- /src/CQRSShop.Domain/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastoj/CQRSShop/HEAD/src/CQRSShop.Domain/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/CQRSShop.Infrastructure/AggregateBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastoj/CQRSShop/HEAD/src/CQRSShop.Infrastructure/AggregateBase.cs -------------------------------------------------------------------------------- /src/CQRSShop.Infrastructure/CQRSShop.Infrastructure.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastoj/CQRSShop/HEAD/src/CQRSShop.Infrastructure/CQRSShop.Infrastructure.csproj -------------------------------------------------------------------------------- /src/CQRSShop.Infrastructure/CommandDispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastoj/CQRSShop/HEAD/src/CQRSShop.Infrastructure/CommandDispatcher.cs -------------------------------------------------------------------------------- /src/CQRSShop.Infrastructure/DomainRepositoryBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastoj/CQRSShop/HEAD/src/CQRSShop.Infrastructure/DomainRepositoryBase.cs -------------------------------------------------------------------------------- /src/CQRSShop.Infrastructure/EventStoreDomainRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastoj/CQRSShop/HEAD/src/CQRSShop.Infrastructure/EventStoreDomainRepository.cs -------------------------------------------------------------------------------- /src/CQRSShop.Infrastructure/Exceptions/AggregateNotFoundException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastoj/CQRSShop/HEAD/src/CQRSShop.Infrastructure/Exceptions/AggregateNotFoundException.cs -------------------------------------------------------------------------------- /src/CQRSShop.Infrastructure/IAggregate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastoj/CQRSShop/HEAD/src/CQRSShop.Infrastructure/IAggregate.cs -------------------------------------------------------------------------------- /src/CQRSShop.Infrastructure/ICommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastoj/CQRSShop/HEAD/src/CQRSShop.Infrastructure/ICommand.cs -------------------------------------------------------------------------------- /src/CQRSShop.Infrastructure/IDomainRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastoj/CQRSShop/HEAD/src/CQRSShop.Infrastructure/IDomainRepository.cs -------------------------------------------------------------------------------- /src/CQRSShop.Infrastructure/IEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastoj/CQRSShop/HEAD/src/CQRSShop.Infrastructure/IEvent.cs -------------------------------------------------------------------------------- /src/CQRSShop.Infrastructure/IHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastoj/CQRSShop/HEAD/src/CQRSShop.Infrastructure/IHandle.cs -------------------------------------------------------------------------------- /src/CQRSShop.Infrastructure/IdGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastoj/CQRSShop/HEAD/src/CQRSShop.Infrastructure/IdGenerator.cs -------------------------------------------------------------------------------- /src/CQRSShop.Infrastructure/InMemoryDomainRespository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastoj/CQRSShop/HEAD/src/CQRSShop.Infrastructure/InMemoryDomainRespository.cs -------------------------------------------------------------------------------- /src/CQRSShop.Infrastructure/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastoj/CQRSShop/HEAD/src/CQRSShop.Infrastructure/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/CQRSShop.Infrastructure/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastoj/CQRSShop/HEAD/src/CQRSShop.Infrastructure/packages.config -------------------------------------------------------------------------------- /src/CQRSShop.Search/CQRSShop.Search.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastoj/CQRSShop/HEAD/src/CQRSShop.Search/CQRSShop.Search.csproj -------------------------------------------------------------------------------- /src/CQRSShop.Search/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastoj/CQRSShop/HEAD/src/CQRSShop.Search/Class1.cs -------------------------------------------------------------------------------- /src/CQRSShop.Search/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastoj/CQRSShop/HEAD/src/CQRSShop.Search/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/CQRSShop.Service/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastoj/CQRSShop/HEAD/src/CQRSShop.Service/App.config -------------------------------------------------------------------------------- /src/CQRSShop.Service/CQRSShop.Service.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastoj/CQRSShop/HEAD/src/CQRSShop.Service/CQRSShop.Service.csproj -------------------------------------------------------------------------------- /src/CQRSShop.Service/Documents/Basket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastoj/CQRSShop/HEAD/src/CQRSShop.Service/Documents/Basket.cs -------------------------------------------------------------------------------- /src/CQRSShop.Service/Documents/Customer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastoj/CQRSShop/HEAD/src/CQRSShop.Service/Documents/Customer.cs -------------------------------------------------------------------------------- /src/CQRSShop.Service/Documents/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastoj/CQRSShop/HEAD/src/CQRSShop.Service/Documents/Product.cs -------------------------------------------------------------------------------- /src/CQRSShop.Service/EventSerialization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastoj/CQRSShop/HEAD/src/CQRSShop.Service/EventSerialization.cs -------------------------------------------------------------------------------- /src/CQRSShop.Service/EventStoreConnectionWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastoj/CQRSShop/HEAD/src/CQRSShop.Service/EventStoreConnectionWrapper.cs -------------------------------------------------------------------------------- /src/CQRSShop.Service/Indexer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastoj/CQRSShop/HEAD/src/CQRSShop.Service/Indexer.cs -------------------------------------------------------------------------------- /src/CQRSShop.Service/IndexingServie.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastoj/CQRSShop/HEAD/src/CQRSShop.Service/IndexingServie.cs -------------------------------------------------------------------------------- /src/CQRSShop.Service/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastoj/CQRSShop/HEAD/src/CQRSShop.Service/Program.cs -------------------------------------------------------------------------------- /src/CQRSShop.Service/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastoj/CQRSShop/HEAD/src/CQRSShop.Service/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/CQRSShop.Service/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastoj/CQRSShop/HEAD/src/CQRSShop.Service/packages.config -------------------------------------------------------------------------------- /src/CQRSShop.Web/Api/BasePostEndpoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastoj/CQRSShop/HEAD/src/CQRSShop.Web/Api/BasePostEndpoint.cs -------------------------------------------------------------------------------- /src/CQRSShop.Web/Api/Basket/Checkout/PostEndpoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastoj/CQRSShop/HEAD/src/CQRSShop.Web/Api/Basket/Checkout/PostEndpoint.cs -------------------------------------------------------------------------------- /src/CQRSShop.Web/Api/Basket/Items/PostEndpoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastoj/CQRSShop/HEAD/src/CQRSShop.Web/Api/Basket/Items/PostEndpoint.cs -------------------------------------------------------------------------------- /src/CQRSShop.Web/Api/Basket/Pay/PostEndpoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastoj/CQRSShop/HEAD/src/CQRSShop.Web/Api/Basket/Pay/PostEndpoint.cs -------------------------------------------------------------------------------- /src/CQRSShop.Web/Api/Basket/PostEndpoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastoj/CQRSShop/HEAD/src/CQRSShop.Web/Api/Basket/PostEndpoint.cs -------------------------------------------------------------------------------- /src/CQRSShop.Web/Api/Basket/Proceed/PostEndpoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastoj/CQRSShop/HEAD/src/CQRSShop.Web/Api/Basket/Proceed/PostEndpoint.cs -------------------------------------------------------------------------------- /src/CQRSShop.Web/Api/Customer/PostEndpoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastoj/CQRSShop/HEAD/src/CQRSShop.Web/Api/Customer/PostEndpoint.cs -------------------------------------------------------------------------------- /src/CQRSShop.Web/Api/Customer/Preferred/PostEndpoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastoj/CQRSShop/HEAD/src/CQRSShop.Web/Api/Customer/Preferred/PostEndpoint.cs -------------------------------------------------------------------------------- /src/CQRSShop.Web/Api/GetEndpoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastoj/CQRSShop/HEAD/src/CQRSShop.Web/Api/GetEndpoint.cs -------------------------------------------------------------------------------- /src/CQRSShop.Web/Api/Order/Approve/PostEndpoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastoj/CQRSShop/HEAD/src/CQRSShop.Web/Api/Order/Approve/PostEndpoint.cs -------------------------------------------------------------------------------- /src/CQRSShop.Web/Api/Order/Cancel/PostEndpoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastoj/CQRSShop/HEAD/src/CQRSShop.Web/Api/Order/Cancel/PostEndpoint.cs -------------------------------------------------------------------------------- /src/CQRSShop.Web/Api/Order/Ship/PostEndpoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastoj/CQRSShop/HEAD/src/CQRSShop.Web/Api/Order/Ship/PostEndpoint.cs -------------------------------------------------------------------------------- /src/CQRSShop.Web/Api/Order/StartShipping/PostEndpoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastoj/CQRSShop/HEAD/src/CQRSShop.Web/Api/Order/StartShipping/PostEndpoint.cs -------------------------------------------------------------------------------- /src/CQRSShop.Web/Api/Product/PostEndpoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastoj/CQRSShop/HEAD/src/CQRSShop.Web/Api/Product/PostEndpoint.cs -------------------------------------------------------------------------------- /src/CQRSShop.Web/CQRSShop.Web.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastoj/CQRSShop/HEAD/src/CQRSShop.Web/CQRSShop.Web.csproj -------------------------------------------------------------------------------- /src/CQRSShop.Web/Configuration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastoj/CQRSShop/HEAD/src/CQRSShop.Web/Configuration.cs -------------------------------------------------------------------------------- /src/CQRSShop.Web/OwinAppSetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastoj/CQRSShop/HEAD/src/CQRSShop.Web/OwinAppSetup.cs -------------------------------------------------------------------------------- /src/CQRSShop.Web/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastoj/CQRSShop/HEAD/src/CQRSShop.Web/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/CQRSShop.Web/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastoj/CQRSShop/HEAD/src/CQRSShop.Web/Web.Debug.config -------------------------------------------------------------------------------- /src/CQRSShop.Web/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastoj/CQRSShop/HEAD/src/CQRSShop.Web/Web.Release.config -------------------------------------------------------------------------------- /src/CQRSShop.Web/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastoj/CQRSShop/HEAD/src/CQRSShop.Web/Web.config -------------------------------------------------------------------------------- /src/CQRSShop.Web/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastoj/CQRSShop/HEAD/src/CQRSShop.Web/packages.config -------------------------------------------------------------------------------- /src/CQRSShop.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastoj/CQRSShop/HEAD/src/CQRSShop.sln --------------------------------------------------------------------------------