├── .gitattributes ├── .gitignore ├── 05 - Domain Model Implementation Patterns ├── PPPDDDChap05.DomainModel │ ├── PPPDDDChap05.DomainModel.sln │ └── PPPDDDChap05.DomainModel │ │ ├── Application │ │ └── BidOnAuctionService.cs │ │ ├── Model │ │ ├── Auction.cs │ │ ├── Bid.cs │ │ ├── ClassDiagram.cd │ │ ├── HistoricalBid.cs │ │ ├── IAuctionRepository.cs │ │ ├── Money.cs │ │ ├── Price.cs │ │ └── WinningBid.cs │ │ ├── PPPDDDChap05.DomainModel.csproj │ │ └── Properties │ │ └── AssemblyInfo.cs ├── PPPDDDChap05.TableModule │ ├── PPPDDDChap05.TableModule.sln │ └── PPPDDDChap05.TableModule │ │ ├── Domain │ │ ├── Customers.cs │ │ ├── Orders.cs │ │ └── TableModuleBase.cs │ │ ├── PPPDDDChap05.TableModule.csproj │ │ └── Properties │ │ └── AssemblyInfo.cs └── PPPDDDChap05.TransactionScript │ ├── PPPDDDChap05.TransactionScript.sln │ └── PPPDDDChap05.TransactionScript │ ├── Application │ └── BidOnAuctionService.cs │ ├── Domain │ ├── Auction.cs │ ├── BidOnAuction.cs │ ├── BidOnAuctionCommand.cs │ ├── ClassDiagram1.cd │ ├── CreateAuction.cs │ └── ICommand.cs │ ├── PPPDDDChap05.TransactionScript.csproj │ └── Properties │ └── AssemblyInfo.cs ├── 10 - Applying the Principles, Practices and Patterns of DDD └── PPPDDD.Chap10.ecommerce │ ├── PPPDDD.Chap10.ecommerce.sln │ └── PPPDDD.Chap10.ecommerce │ ├── ExplicitLogic │ └── Model │ │ ├── BasketItem.cs │ │ ├── BasketItemFactory.cs │ │ ├── BasketItems.cs │ │ ├── Country.cs │ │ ├── OverSeasSellingPolicyException.cs │ │ ├── OverseasSellingPolicy.cs │ │ ├── Product.cs │ │ ├── Quantity.cs │ │ └── basket.cs │ ├── ImplicitLogic │ └── Model │ │ ├── BasketItem.cs │ │ ├── BasketItemFactory.cs │ │ ├── BasketItems.cs │ │ ├── Product.cs │ │ ├── Quantity.cs │ │ └── basket.cs │ ├── PPPDDD.Chap10.ecommerce.csproj │ └── Properties │ └── AssemblyInfo.cs ├── 11 - Integrating Bounded Contexts └── README.md ├── 12 - Integrating Via Messaging ├── Billing.Messages │ ├── Billing.Messages.csproj │ ├── Commands │ │ └── RecordPaymentAttempt.cs │ ├── Events │ │ └── PaymentAccepted.cs │ └── Properties │ │ └── AssemblyInfo.cs ├── Billing.Payments.PaymentAccepted │ ├── App.config │ ├── Billing.Payments.PaymentAccepted.csproj │ ├── EndpointConfig.cs │ ├── OrderCreatedHandler.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── RecordPaymentAttemptHandler.cs │ └── packages.config ├── DDDesign.Web │ ├── App_Start │ │ ├── FilterConfig.cs │ │ ├── RouteConfig.cs │ │ └── WebApiConfig.cs │ ├── Controllers │ │ └── OrdersController.cs │ ├── DDDesign.Web.csproj │ ├── Global.asax │ ├── Global.asax.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Views │ │ ├── Orders │ │ │ └── Index.cshtml │ │ └── Web.config │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Web.config │ └── packages.config ├── DDDesign.sln ├── Promotions.LuckyWinner.LuckyWinnerSelected.Bridge │ ├── App.config │ ├── Application │ │ └── OrderCreatedHandler.cs │ ├── Infrastructure │ │ └── EndpointConfig.cs │ ├── Promotions.LuckyWinner.LuckyWinnerSelected.Bridge.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ └── packages.config ├── Promotions.LuckyWinner.LuckyWinnerSelected │ ├── App.config │ ├── Application │ │ └── Program.cs │ ├── Promotions.LuckyWinner.LuckyWinnerSelected.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ └── packages.config ├── README.md ├── Sales.Messages │ ├── Commands │ │ └── PlaceOrder.cs │ ├── Events │ │ ├── OrderCreated.cs │ │ └── OrderCreated_V2.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── Sales.Messages.csproj ├── Sales.Orders.OrderCreated │ ├── App.config │ ├── Application │ │ └── PlaceOrderHandler.cs │ ├── Infrastructure │ │ └── EndpointConfig.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Sales.Orders.OrderCreated.csproj │ └── packages.config ├── Shipping.BusinessCustomers.ShippingArranged │ ├── App.config │ ├── Application │ │ └── Handlers.cs │ ├── Infrastructure │ │ └── EndpointConfig.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Shipping.BusinessCustomers.ShippingArranged.csproj │ └── packages.config └── Shipping.Messages │ ├── Events │ └── ShippingArranged.cs │ ├── Properties │ └── AssemblyInfo.cs │ └── Shipping.Messages.csproj ├── 13 - Integrating Via Http and Rest ├── PPPDDD.JSON.SocialMedia │ ├── AccountManagement │ │ ├── AccountManagement.csproj │ │ ├── App_Start │ │ │ └── WebApiConfig.cs │ │ ├── Controllers │ │ │ └── FollowerDirectoryController.cs │ │ ├── Global.asax │ │ ├── Global.asax.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Web.Debug.config │ │ ├── Web.Release.config │ │ ├── Web.config │ │ └── packages.config │ ├── Discovery │ │ ├── App_Start │ │ │ └── WebApiConfig.cs │ │ ├── Controllers │ │ │ └── RecommenderController.cs │ │ ├── Discovery.csproj │ │ ├── Global.asax │ │ ├── Global.asax.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Web.Debug.config │ │ ├── Web.Release.config │ │ ├── Web.config │ │ └── packages.config │ └── PPPDDD.JSON.SocialMedia.sln ├── PPPDDD.REST.SocialMedia │ ├── .gitignore │ ├── AccountManagement.Accounts.Api │ │ ├── AccountManagement.Accounts.Api.csproj │ │ ├── App_Start │ │ │ └── WebApiConfig.cs │ │ ├── Controllers │ │ │ ├── AccountsController.cs │ │ │ └── FollowersController.cs │ │ ├── Global.asax │ │ ├── Global.asax.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Web.Debug.config │ │ ├── Web.Release.config │ │ ├── Web.config │ │ └── packages.config │ ├── AccountManagement.EntryPoint │ │ ├── .gitignore │ │ ├── AccountManagement.EntryPoint.Api.csproj │ │ ├── App_Start │ │ │ └── WebApiConfig.cs │ │ ├── Controllers │ │ │ └── EntryPointController.cs │ │ ├── Global.asax │ │ ├── Global.asax.cs │ │ ├── MIT-LICENSE.txt │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── README.md │ │ ├── Web.Debug.config │ │ ├── Web.Release.config │ │ ├── Web.config │ │ ├── browser.html │ │ ├── js │ │ │ ├── hal.js │ │ │ └── hal │ │ │ │ ├── browser.js │ │ │ │ ├── http │ │ │ │ └── client.js │ │ │ │ ├── resource.js │ │ │ │ └── views │ │ │ │ ├── browser.js │ │ │ │ ├── documentation.js │ │ │ │ ├── embedded_resource.js │ │ │ │ ├── embedded_resources.js │ │ │ │ ├── explorer.js │ │ │ │ ├── inspector.js │ │ │ │ ├── links.js │ │ │ │ ├── location_bar.js │ │ │ │ ├── navigation.js │ │ │ │ ├── non_safe_request_dialog.js │ │ │ │ ├── properties.js │ │ │ │ ├── query_uri_dialog.js │ │ │ │ ├── request_headers.js │ │ │ │ ├── resource.js │ │ │ │ ├── response.js │ │ │ │ ├── response_body.js │ │ │ │ └── response_headers.js │ │ ├── packages.config │ │ ├── styles.css │ │ └── vendor │ │ │ ├── css │ │ │ ├── bootstrap-responsive.css │ │ │ └── bootstrap.css │ │ │ ├── img │ │ │ ├── ajax-loader.gif │ │ │ ├── glyphicons-halflings-white.png │ │ │ └── glyphicons-halflings.png │ │ │ └── js │ │ │ ├── backbone.js │ │ │ ├── bootstrap.js │ │ │ ├── jquery-1.10.2.js │ │ │ ├── jquery-1.10.2.min.js │ │ │ ├── jquery-1.10.2.min.map │ │ │ ├── underscore.js │ │ │ └── uritemplates.js │ ├── AccountManagement.RegularAccounts.BeganFollowing │ │ ├── AccountManagement.RegularAccounts.BeganFollowing.csproj │ │ ├── App_Start │ │ │ ├── EnableCorsAttribute.cs │ │ │ └── WebApiConfig.cs │ │ ├── Controllers │ │ │ └── BeganFollowingController.cs │ │ ├── Global.asax │ │ ├── Global.asax.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Web.Debug.config │ │ ├── Web.Release.config │ │ ├── Web.config │ │ └── packages.config │ ├── Discovery.Reccommendations.Followers │ │ ├── BeganFollowingPollingFeedConsumer.cs │ │ ├── Discovery.Reccommendations.Followers.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── packages.config │ └── PPPDDD.REST.SocialMedia.sln ├── PPPDDD.SOAP.SocialMedia │ ├── AccountManagement │ │ ├── AccountManagement.csproj │ │ ├── FollowerDirectory.svc │ │ ├── FollowerDirectory.svc.cs │ │ ├── IFollowerDirectory.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Web.Debug.config │ │ ├── Web.Release.config │ │ └── Web.config │ ├── Discovery │ │ ├── Discovery.csproj │ │ ├── IRecommender.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Recommender.svc │ │ ├── Recommender.svc.cs │ │ ├── Service References │ │ │ └── AccountManagement │ │ │ │ ├── Discovery.AccountManagement.Follower.datasource │ │ │ │ ├── FollowerDirectory.disco │ │ │ │ ├── FollowerDirectory.wsdl │ │ │ │ ├── FollowerDirectory.xsd │ │ │ │ ├── FollowerDirectory1.xsd │ │ │ │ ├── FollowerDirectory2.xsd │ │ │ │ ├── FollowerDirectory3.xsd │ │ │ │ ├── Reference.cs │ │ │ │ ├── Reference.svcmap │ │ │ │ ├── configuration.svcinfo │ │ │ │ └── configuration91.svcinfo │ │ ├── Web.Debug.config │ │ ├── Web.Release.config │ │ └── Web.config │ └── PPPDDD.SOAP.SocialMedia.sln └── README.md ├── 14 - Introducing Domain Modelling Patterns and Best Practices └── README.md ├── 15 - Value Objects ├── Examples │ ├── BankAccount │ │ └── BankAccount.cs │ ├── Examples.csproj │ ├── Model │ │ ├── BankAccount.cs │ │ ├── Customer.cs │ │ ├── Meters.cs │ │ ├── MicroTypes.cs │ │ ├── Money.cs │ │ ├── Name.cs │ │ └── ValueObject.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── app.config │ └── packages.config ├── PPPDDD.Chap16.ValueObjects.sln ├── README.md └── Tests │ ├── Tests.sln │ └── Tests │ ├── Combining_money_tests.cs │ ├── DateTime_immutability_tests.cs │ ├── Denormalized_persistence_example.cs │ ├── Meters_equality_tests.cs │ ├── Micro_types_example_tests.cs │ ├── Name_validation_tests.cs │ ├── Normalized_persistence_example.cs │ ├── Persistence_format_examples.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── Tests.csproj │ ├── TimeSpan_factory_method_tests.cs │ ├── app.config │ └── packages.config ├── 16 - Entities ├── PPPDDDChap17.Entities.Examples │ ├── Customer.cs │ ├── Model │ │ ├── Book.cs │ │ ├── Dice.cs │ │ ├── FlightBooking.cs │ │ ├── GlobalCounter.cs │ │ ├── HolidayBooking.cs │ │ ├── Hotel.cs │ │ ├── OnlineTakeawayOrder.cs │ │ ├── SoccerMatch.cs │ │ └── Vehicle.cs │ ├── PPPDDDChap17.Entities.Examples.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ └── packages.config ├── PPPDDDChap17.Entities.Tests │ ├── BookTests.cs │ ├── DatastoreIdGenerationExample.cs │ ├── FlightBookingTests.cs │ ├── GlobalCounterTest.cs │ ├── HolidayBookingTest.cs │ ├── HotelTests.cs │ ├── PPPDDDChap17.Entities.Tests.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── app.config │ └── packages.config ├── PPPDDDChap17.Entities.sln └── README.md ├── 17 - Domain Services ├── PPPDDDChap18.DomainServices.sln ├── PPPDDDChap18.DomainServices │ ├── Insurance │ │ ├── Application │ │ │ └── MultiMemberInsurancePremium.cs │ │ └── Model │ │ │ ├── IMemberRepository.cs │ │ │ ├── IMultiMemberPremiumCalculator.cs │ │ │ ├── IPolicyRepository.cs │ │ │ ├── Member.cs │ │ │ ├── Policy.cs │ │ │ └── Quote.cs │ ├── OnlineDating │ │ └── Model │ │ │ ├── BloodType.cs │ │ │ ├── CompatibilityRating.cs │ │ │ ├── LoveSeeker.cs │ │ │ └── RomanceOMeter.cs │ ├── OnlineGaming │ │ ├── WithDomainServices │ │ │ └── Model │ │ │ │ ├── Competitor.cs │ │ │ │ ├── IGame.cs │ │ │ │ ├── IGameRewardPolicy.cs │ │ │ │ ├── IGameScoringPolicy.cs │ │ │ │ ├── IScoreFinder.cs │ │ │ │ ├── OnlineDeathmatch.cs │ │ │ │ ├── Ranking.cs │ │ │ │ └── Score.cs │ │ └── WithoutDomainServices │ │ │ └── Model │ │ │ ├── Competitor.cs │ │ │ ├── OnlineDeathmatch.cs │ │ │ ├── Ranking.cs │ │ │ └── Score.cs │ ├── PPPDDDChap18.DomainServices.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── RestaurantBooking │ │ └── Model │ │ │ ├── BookingDetails.cs │ │ │ ├── Customer.cs │ │ │ ├── DomainEvents.cs │ │ │ ├── Events │ │ │ └── BookingConfirmedByCustomer.cs │ │ │ ├── Handlers │ │ │ └── NotifyRestaurantOnCustomerBookingConfirmation.cs │ │ │ ├── IHandleEvents.cs │ │ │ ├── Restaurant.cs │ │ │ ├── RestaurantBooking.cs │ │ │ ├── RestaurantBookingFactory.cs │ │ │ ├── RestaurantBookingRepository.cs │ │ │ └── RestaurantNotifier.cs │ └── Shipping │ │ ├── Application │ │ └── ShippingRouteFinder.cs │ │ └── Model │ │ └── IShippingRouteFinder.cs └── README.md ├── 18 - Domain Events ├── .nuget │ ├── NuGet.Config │ ├── NuGet.exe │ └── NuGet.targets ├── DomainEvents.OnlineTakeawayStore.sln ├── OnlineTakeawayStore.NServiceBus │ ├── App.config │ ├── Application │ │ ├── ConfirmDeliveryOfOrder.cs │ │ └── Events │ │ │ └── RefundDueToLateDelivery.cs │ ├── Infrastructure │ │ └── EndpointConfig.cs │ ├── Model │ │ ├── Events │ │ │ └── DeliveryGuaranteeFailed.cs │ │ ├── FoodDeliveryOrderSteps.cs │ │ ├── IDeliveryGuaranteeOffer.cs │ │ ├── IOrderRepository.cs │ │ └── OrderForDelivery.cs │ ├── OnlineTakeawayStore.NServiceBus.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ └── packages.config ├── OnlineTakeawayStore.NativeEvents │ ├── Application │ │ ├── CofirmDeliveryOfOrder.cs │ │ └── Events │ │ │ └── RefundDueToLateDelivery.cs │ ├── Model │ │ ├── Events │ │ │ └── DeliveryGuaranteeFailed.cs │ │ ├── FoodDeliveryOrderSteps.cs │ │ ├── IDeliveryGuaranteeOffer.cs │ │ ├── IOrderRepository.cs │ │ └── OrderForDelivery.cs │ ├── OnlineTakeawayStore.NativeEvents.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ └── packages.config ├── OnlineTakeawayStore.ReturnEvents │ ├── Application │ │ └── ConfirmDeliveryOfOrder.cs │ ├── Infrastructure │ │ └── IEventDispatcher.cs │ ├── Model │ │ ├── Events │ │ │ └── DeliveryGuaranteeFailed.cs │ │ ├── FoodDeliveryOrderSteps.cs │ │ ├── IDeliveryGuaranteeOffer.cs │ │ ├── IOrderRepository.cs │ │ └── OrderForDelivery.cs │ ├── OnlineTakeawayStore.ReturnEvents.csproj │ └── Properties │ │ └── AssemblyInfo.cs ├── OnlineTakeawayStore.StaticDomainEvents │ ├── Application │ │ ├── ConfirmDeliveryOfOrder.cs │ │ └── Events │ │ │ └── RefundDueToLateDelivery.cs │ ├── Infrastructure │ │ └── DomainEvents.cs │ ├── Model │ │ ├── Events │ │ │ └── DeliveryGuaranteeFailed.cs │ │ ├── FoodDeliveryOrderSteps.cs │ │ ├── IDeliveryGuaranteeOffer.cs │ │ ├── IOrderRepository.cs │ │ └── OrderForDelivery.cs │ ├── OnlineTakeawayStore.StaticDomainEvents.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ └── packages.config └── OnlineTakeawayStore.Tests │ ├── OnlineTakeawayStore.Tests.csproj │ ├── Properties │ └── AssemblyInfo.cs │ ├── ServiceLayerTestExamples │ └── Delivery_guarantee_failed.cs │ ├── UnitTestExamples │ ├── ReturnDomainEvents.cs │ └── StaticDomainEvents.cs │ └── packages.config ├── 19 - Aggregates ├── PPPDDDChap19.eBidder │ ├── PPPDDDChap19.eBidder.Common │ │ ├── PPPDDDChap19.eBidder.Common.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── PPPDDDChap19.eBidder.Disputes │ │ ├── PPPDDDChap19.eBidder.Disputes.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── _ReadMe.txt │ ├── PPPDDDChap19.eBidder.Listings │ │ ├── Application │ │ │ ├── Auctions │ │ │ │ └── BusinessUseCases │ │ │ │ │ ├── AuctionCreation.cs │ │ │ │ │ ├── BidOnAuctionService.cs │ │ │ │ │ └── CreateAuctionService.cs │ │ │ ├── QandA │ │ │ │ └── BusinessUseCases │ │ │ │ │ ├── Answer.cs │ │ │ │ │ ├── AnswerAQuestionService.cs │ │ │ │ │ └── AskAQuestionService.cs │ │ │ └── Watching │ │ │ │ └── BusinessUseCases │ │ │ │ ├── UnWatchItem.cs │ │ │ │ ├── WatchItem.cs │ │ │ │ └── WatchItemService.cs │ │ ├── Infrastructure │ │ │ ├── DomainEvents.cs │ │ │ ├── Entity.cs │ │ │ ├── IClock.cs │ │ │ ├── SystemClock.cs │ │ │ └── ValueObject.cs │ │ ├── Model │ │ │ ├── ListingFormat │ │ │ │ ├── Auctions │ │ │ │ │ ├── Auction.cs │ │ │ │ │ ├── AuctionId.cs │ │ │ │ │ ├── AutomaticBidder.cs │ │ │ │ │ ├── BidHistory │ │ │ │ │ │ ├── Bid.cs │ │ │ │ │ │ └── IBidHistoryRepository.cs │ │ │ │ │ ├── BidPlaced.cs │ │ │ │ │ ├── IAuctionRepository.cs │ │ │ │ │ ├── Offer.cs │ │ │ │ │ ├── OutBid.cs │ │ │ │ │ ├── Price.cs │ │ │ │ │ └── WinningBid.cs │ │ │ │ └── FixedPriceListings │ │ │ │ │ ├── FixedPriceListing.cs │ │ │ │ │ ├── IFixedPriceListingRepository.cs │ │ │ │ │ └── Offers │ │ │ │ │ └── BestOffer.cs │ │ │ ├── Listings │ │ │ │ ├── FormatType.cs │ │ │ │ ├── IListingRepository.cs │ │ │ │ ├── Listing.cs │ │ │ │ ├── ListingFormat.cs │ │ │ │ ├── ListingRevision.cs │ │ │ │ └── ListingRevisionEvent.cs │ │ │ ├── Members │ │ │ │ ├── IMemberService.cs │ │ │ │ └── Member.cs │ │ │ ├── Money.cs │ │ │ ├── MoneyCannotBeANegativeValueException.cs │ │ │ ├── MoreThanTwoDecimalPlacesInMoneyValueException.cs │ │ │ ├── QandA │ │ │ │ ├── Answer.cs │ │ │ │ ├── IQuestionRepository.cs │ │ │ │ ├── Question.cs │ │ │ │ ├── QuestionAnswered.cs │ │ │ │ └── QuestionSubmitted.cs │ │ │ ├── Sellers │ │ │ │ ├── ISellerService.cs │ │ │ │ └── Seller.cs │ │ │ └── WatchLists │ │ │ │ ├── IWatchedItemRepository.cs │ │ │ │ └── WatchedItem.cs │ │ ├── PPPDDDChap19.eBidder.Listings.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── PPPDDDChap19.eBidder.Membership │ │ ├── Model │ │ │ └── Members │ │ │ │ ├── IMemberRepository.cs │ │ │ │ └── Member.cs │ │ ├── PPPDDDChap19.eBidder.Membership.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── _ReadMe.txt │ ├── PPPDDDChap19.eBidder.SellerAccount │ │ ├── PPPDDDChap19.eBidder.SellerAccount.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── _ReadMe.txt │ └── PPPDDDChap19.eBidder.sln └── README.md ├── 20 - Factories └── README.md ├── 21 - Repositories ├── DDDPPP.Chap21.EFExample │ ├── .nuget │ │ ├── NuGet.Config │ │ ├── NuGet.exe │ │ └── NuGet.targets │ ├── DDDPPP.Chap21.EFExample.Application │ │ ├── App.config │ │ ├── Application │ │ │ ├── BusinessUseCases │ │ │ │ ├── BidOnAuction.cs │ │ │ │ ├── CreateAuction.cs │ │ │ │ └── NewAuctionRequest.cs │ │ │ └── Queries │ │ │ │ ├── AuctionStatus.cs │ │ │ │ ├── AuctionStatusQuery.cs │ │ │ │ ├── BidHistoryQuery.cs │ │ │ │ └── BidInformation.cs │ │ ├── Bootstrapper.cs │ │ ├── DDDPPP.Chap21.EFExample.Application.csproj │ │ ├── Infrastructure │ │ │ ├── AuctionDatabaseContext.cs │ │ │ ├── AuctionRepository.cs │ │ │ ├── BidHistoryRepository.cs │ │ │ ├── DataModel │ │ │ │ ├── AuctionDTO.cs │ │ │ │ └── BidDTO.cs │ │ │ ├── DomainEvents.cs │ │ │ ├── Entity.cs │ │ │ ├── IClock.cs │ │ │ ├── Mapping │ │ │ │ ├── AuctionMap.cs │ │ │ │ └── BidMap.cs │ │ │ ├── SystemClock.cs │ │ │ └── ValueObject.cs │ │ ├── Model │ │ │ ├── Auction │ │ │ │ ├── Auction.cs │ │ │ │ ├── AuctionSnapshot.cs │ │ │ │ ├── AutomaticBidder.cs │ │ │ │ ├── BidPlaced.cs │ │ │ │ ├── IAuctionRepository.cs │ │ │ │ ├── Money.cs │ │ │ │ ├── MoneyCannotBeANegativeValueException.cs │ │ │ │ ├── MoneySnapshot.cs │ │ │ │ ├── MoreThanTwoDecimalPlacesInMoneyValueException.cs │ │ │ │ ├── Offer.cs │ │ │ │ ├── OutBid.cs │ │ │ │ ├── Price.cs │ │ │ │ ├── WinningBid.cs │ │ │ │ └── WinningBidSnapshot.cs │ │ │ └── BidHistory │ │ │ │ ├── Bid.cs │ │ │ │ ├── BidHistory.cs │ │ │ │ └── IBidHistoryRepository.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── packages.config │ ├── DDDPPP.Chap21.EFExample.Presentation │ │ ├── App.config │ │ ├── DDDPPP.Chap21.EFExample.Presentation.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── packages.config │ └── DDDPPP.Chap21.EFExample.sln ├── DDDPPP.Chap21.MicroORM │ ├── .nuget │ │ ├── NuGet.Config │ │ ├── NuGet.exe │ │ └── NuGet.targets │ ├── DDDPPP.Chap21.MicroORM.Application │ │ ├── Application │ │ │ ├── BusinessUseCases │ │ │ │ ├── BidOnAuction.cs │ │ │ │ ├── CreateAuction.cs │ │ │ │ └── NewAuctionRequest.cs │ │ │ └── Queries │ │ │ │ ├── AuctionStatus.cs │ │ │ │ ├── AuctionStatusQuery.cs │ │ │ │ ├── BidHistoryQuery.cs │ │ │ │ └── BidInformation.cs │ │ ├── Bootstrapper.cs │ │ ├── DDDPPP.Chap21.MicroORM.Application.csproj │ │ ├── Infrastructure │ │ │ ├── AuctionRepository.cs │ │ │ ├── BidHistoryRepository.cs │ │ │ ├── ConcurrencyException.cs │ │ │ ├── DataModel │ │ │ │ ├── AuctionDTO.cs │ │ │ │ └── BidDTO.cs │ │ │ ├── DomainEvents.cs │ │ │ ├── Entity.cs │ │ │ ├── IAggregateDataModel.cs │ │ │ ├── IClock.cs │ │ │ ├── IUnitOfWork.cs │ │ │ ├── IUnitOfWorkRepository.cs │ │ │ ├── SystemClock.cs │ │ │ ├── UnitOfWork.cs │ │ │ └── ValueObject.cs │ │ ├── Model │ │ │ ├── Auction │ │ │ │ ├── Auction.cs │ │ │ │ ├── AuctionSnapshot.cs │ │ │ │ ├── Bid.cs │ │ │ │ ├── BidPlaced.cs │ │ │ │ ├── IAuctionRepository.cs │ │ │ │ ├── Money.cs │ │ │ │ ├── MoneyCannotBeANegativeValueException.cs │ │ │ │ ├── MoneySnapshot.cs │ │ │ │ ├── MoreThanTwoDecimalPlacesInMoneyValueException.cs │ │ │ │ ├── OutBid.cs │ │ │ │ ├── Price.cs │ │ │ │ ├── WinningBid.cs │ │ │ │ └── WinningBidSnapshot.cs │ │ │ └── BidHistory │ │ │ │ ├── BidHistory.cs │ │ │ │ ├── HistoricalBid.cs │ │ │ │ └── IBidHistoryRepository.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── packages.config │ ├── DDDPPP.Chap21.MicroORM.Presentation │ │ ├── App.config │ │ ├── DDDPPP.Chap21.MicroORM.Presentation.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── packages.config │ └── DDDPPP.Chap21.MicroORM.sln ├── DDDPPP.Chap21.NHibernateExample │ ├── .nuget │ │ ├── NuGet.Config │ │ ├── NuGet.exe │ │ └── NuGet.targets │ ├── DDDPPP.Chap21.NHibernateExample.Application │ │ ├── Application │ │ │ ├── BusinessUseCases │ │ │ │ ├── BidOnAuction.cs │ │ │ │ ├── CreateAuction.cs │ │ │ │ └── NewAuctionRequest.cs │ │ │ └── Queries │ │ │ │ ├── AuctionStatus.cs │ │ │ │ ├── AuctionStatusQuery.cs │ │ │ │ ├── BidHistoryQuery.cs │ │ │ │ └── BidInformation.cs │ │ ├── Bootstrapper.cs │ │ ├── DDDPPP.Chap21.NHibernateExample.Application.csproj │ │ ├── Infrastructure │ │ │ ├── Auction.hbm.xml │ │ │ ├── AuctionRepository.cs │ │ │ ├── Bid.hbm.xml │ │ │ ├── BidHistoryRepository.cs │ │ │ ├── DomainEvents.cs │ │ │ ├── Entity.cs │ │ │ ├── IClock.cs │ │ │ ├── SystemClock.cs │ │ │ └── ValueObject.cs │ │ ├── Model │ │ │ ├── Auction │ │ │ │ ├── Auction.cs │ │ │ │ ├── AutomaticBidder.cs │ │ │ │ ├── BidPlaced.cs │ │ │ │ ├── IAuctionRepository.cs │ │ │ │ ├── Money.cs │ │ │ │ ├── MoneyCannotBeANegativeValueException.cs │ │ │ │ ├── MoreThanTwoDecimalPlacesInMoneyValueException.cs │ │ │ │ ├── Offer.cs │ │ │ │ ├── OutBid.cs │ │ │ │ ├── Price.cs │ │ │ │ └── WinningBid.cs │ │ │ └── BidHistory │ │ │ │ ├── Bid.cs │ │ │ │ └── IBidHistoryRepository.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── packages.config │ ├── DDDPPP.Chap21.NHibernateExample.Presentation │ │ ├── App.config │ │ ├── DDDPPP.Chap21.NHibernateExample.Presentation.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── packages.config │ └── DDDPPP.Chap21.NHibernateExample.sln ├── DDDPPP.Chap21.RavenDBExample │ ├── .nuget │ │ ├── NuGet.Config │ │ ├── NuGet.exe │ │ └── NuGet.targets │ ├── DDDPPP.Chap21.RavenDBExample.Application.Tests │ │ ├── DDDPPP.Chap21.RavenDBExample.Application.Tests.csproj │ │ ├── Domain │ │ │ └── AutomaticBidderScenarios.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── packages.config │ ├── DDDPPP.Chap21.RavenDBExample.Application │ │ ├── Application │ │ │ ├── BusinessUseCases │ │ │ │ ├── BidOnAuction.cs │ │ │ │ ├── CreateAuction.cs │ │ │ │ └── NewAuctionRequest.cs │ │ │ └── Queries │ │ │ │ ├── AuctionStatus.cs │ │ │ │ ├── AuctionStatusQuery.cs │ │ │ │ ├── BidHistoryQuery.cs │ │ │ │ └── BidInformation.cs │ │ ├── Bootstrapper.cs │ │ ├── DDDPPP.Chap21.RavenDBExample.Application.csproj │ │ ├── Infrastructure │ │ │ ├── AuctionRepository.cs │ │ │ ├── BidHistoryRepository.cs │ │ │ ├── BidHistory_NumberOfBids.cs │ │ │ ├── DomainEvents.cs │ │ │ ├── Entity.cs │ │ │ ├── IClock.cs │ │ │ ├── SystemClock.cs │ │ │ └── ValueObject.cs │ │ ├── Model │ │ │ ├── Auction │ │ │ │ ├── Auction.cs │ │ │ │ ├── AutomaticBidder.cs │ │ │ │ ├── BidPlaced.cs │ │ │ │ ├── IAuctionRepository.cs │ │ │ │ ├── Money.cs │ │ │ │ ├── MoneyCannotBeANegativeValueException.cs │ │ │ │ ├── MoreThanTwoDecimalPlacesInMoneyValueException.cs │ │ │ │ ├── Offer.cs │ │ │ │ ├── OutBid.cs │ │ │ │ ├── Price.cs │ │ │ │ └── WinningBid.cs │ │ │ └── BidHistory │ │ │ │ ├── Bid.cs │ │ │ │ ├── BidHistory.cs │ │ │ │ └── IBidHistoryRepository.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── packages.config │ ├── DDDPPP.Chap21.RavenDBExample.Presentation │ │ ├── App.config │ │ ├── DDDPPP.Chap21.RavenDBExample.Presentation.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── packages.config │ └── DDDPPP.Chap21.RavenDBExample.sln └── Database_script_for_examples.sql ├── 22 - Event Sourcing ├── PPPDDD.Chap23.EventSourcing.EventStoreDemo │ ├── GetEventStore.cs │ ├── ImportTestData.cs │ ├── PPPDDD.Chap23.EventSourcing.EventStoreDemo.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Tests.cs │ └── packages.config ├── PPPDDDChap22 │ ├── .nuget │ │ ├── NuGet.Config │ │ ├── NuGet.exe │ │ └── NuGet.targets │ ├── PPPDDDChap23.EventSourcing.Application │ │ ├── Application │ │ │ └── BusinessUseCases │ │ │ │ ├── CreateAccount.cs │ │ │ │ ├── RecordPhonecall.cs │ │ │ │ └── TopUpCredit.cs │ │ ├── Bootstrapper.cs │ │ ├── Infrastructure │ │ │ ├── Entity.cs │ │ │ ├── EventSourcedAggregate.cs │ │ │ ├── EventStore.cs │ │ │ ├── EventStream.cs │ │ │ ├── EventWrapper.cs │ │ │ ├── IClock.cs │ │ │ ├── PayAsYouGoAccountRepository.cs │ │ │ ├── SystemClock.cs │ │ │ └── ValueObject.cs │ │ ├── Model │ │ │ └── PayAsYouGo │ │ │ │ ├── AccountCreated.cs │ │ │ │ ├── CreditAdded.cs │ │ │ │ ├── CreditSatisfiesFreeCallAllowanceOffer.cs │ │ │ │ ├── FreeCallAllowance.cs │ │ │ │ ├── IPayAsYouGoAccountRepository.cs │ │ │ │ ├── Minutes.cs │ │ │ │ ├── Money.cs │ │ │ │ ├── PayAsYouGoAccount.cs │ │ │ │ ├── PayAsYouGoAccountSnapshot.cs │ │ │ │ ├── PayAsYouGoInclusiveMinutesOffer.cs │ │ │ │ ├── PhoneCall.cs │ │ │ │ ├── PhoneCallCharged.cs │ │ │ │ ├── PhoneCallCosting.cs │ │ │ │ └── PhoneNumber.cs │ │ ├── PPPDDDChap23.EventSourcing.Application.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── packages.config │ ├── PPPDDDChap23.EventSourcing.ApplicationTests │ │ ├── PPPDDDChap23.EventSourcing.ApplicationTests.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── packages.config │ ├── PPPDDDChap23.EventSourcing.Presentation │ │ ├── App.config │ │ ├── PPPDDDChap23.EventSourcing.Presentation.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── packages.config │ └── PPPDDDChap23.EventSourcing.sln ├── PPPDDDChap23.EventSourcing │ ├── .nuget │ │ ├── NuGet.Config │ │ ├── NuGet.exe │ │ └── NuGet.targets │ ├── PPPDDDChap23.EventSourcing.Application │ │ ├── Application │ │ │ └── BusinessUseCases │ │ │ │ ├── CreateAccount.cs │ │ │ │ ├── RecordPhonecall.cs │ │ │ │ └── TopUpCredit.cs │ │ ├── Bootstrapper.cs │ │ ├── Infrastructure │ │ │ ├── DomainEvent.cs │ │ │ ├── Entity.cs │ │ │ ├── EventSourcedAggregate.cs │ │ │ ├── EventStore.cs │ │ │ ├── EventStream.cs │ │ │ ├── EventWrapper.cs │ │ │ ├── IClock.cs │ │ │ ├── PasAsYouGoSnapshotJob.cs │ │ │ ├── PayAsYouGoAccountRepository.cs │ │ │ ├── SystemClock.cs │ │ │ └── ValueObject.cs │ │ ├── Model │ │ │ └── PayAsYouGo │ │ │ │ ├── AccountCreated.cs │ │ │ │ ├── CreditAdded.cs │ │ │ │ ├── CreditSatisfiesFreeCallAllowanceOffer.cs │ │ │ │ ├── FreeCallAllowance.cs │ │ │ │ ├── IPayAsYouGoAccountRepository.cs │ │ │ │ ├── Minutes.cs │ │ │ │ ├── Money.cs │ │ │ │ ├── PayAsYouGoAccount.cs │ │ │ │ ├── PayAsYouGoAccountSnapshot.cs │ │ │ │ ├── PayAsYouGoInclusiveMinutesOffer.cs │ │ │ │ ├── PhoneCall.cs │ │ │ │ ├── PhoneCallCharged.cs │ │ │ │ ├── PhoneCallCosting.cs │ │ │ │ └── PhoneNumber.cs │ │ ├── PPPDDDChap23.EventSourcing.Application.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── packages.config │ ├── PPPDDDChap23.EventSourcing.ApplicationTests │ │ ├── PPPDDDChap23.EventSourcing.ApplicationTests.csproj │ │ ├── PayAsYouGoAccount_Tests.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── packages.config │ ├── PPPDDDChap23.EventSourcing.Presentation │ │ ├── App.config │ │ ├── PPPDDDChap23.EventSourcing.Presentation.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── packages.config │ └── PPPDDDChap23.EventSourcing.sln └── README.md ├── 23 - Architecting Application User Interfaces ├── PPPDDD.NonDist.UIComp │ ├── PPPDDD.NonDist.UIComp.sln │ └── PPPDDD.NonDist.UIComp │ │ ├── App_Start │ │ └── RouteConfig.cs │ │ ├── Controllers │ │ ├── CatalogueBoundedContextController.cs │ │ ├── HomeController.cs │ │ ├── PricingBoundedContextController.cs │ │ └── ShippingBoundedContextController.cs │ │ ├── Global.asax │ │ ├── Global.asax.cs │ │ ├── PPPDDD.NonDist.UIComp.csproj │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── Scripts │ │ ├── jquery-1.10.2.intellisense.js │ │ ├── jquery-1.10.2.js │ │ ├── jquery-1.10.2.min.js │ │ ├── jquery-1.10.2.min.map │ │ ├── jquery.validate-vsdoc.js │ │ ├── jquery.validate.js │ │ ├── jquery.validate.min.js │ │ ├── jquery.validate.unobtrusive.js │ │ └── jquery.validate.unobtrusive.min.js │ │ ├── Views │ │ ├── CatalogBoundedContext │ │ │ └── ItemInBasket.cshtml │ │ ├── Home │ │ │ └── Index.cshtml │ │ ├── PricingBoundedContext │ │ │ └── Price.cshtml │ │ ├── ShippingBoundedContext │ │ │ └── DeliveryOptions.cshtml │ │ └── web.config │ │ ├── Web.Debug.config │ │ ├── Web.Release.config │ │ ├── Web.config │ │ └── packages.config ├── PPPSSS.Dist.UIComp │ ├── PPPSSS.Dist.UIComp.sln │ └── PPPSSS.Dist.UIComp │ │ ├── App_Start │ │ └── RouteConfig.cs │ │ ├── Controllers │ │ ├── HolidaysController.cs │ │ ├── HomeController.cs │ │ ├── PromotionsController.cs │ │ └── RecommendationsController.cs │ │ ├── Global.asax │ │ ├── Global.asax.cs │ │ ├── PPPSSS.Dist.UIComp.csproj │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── Scripts │ │ ├── jquery-1.10.2.intellisense.js │ │ ├── jquery-1.10.2.js │ │ ├── jquery-1.10.2.min.js │ │ ├── jquery-1.10.2.min.map │ │ ├── jquery.validate-vsdoc.js │ │ ├── jquery.validate.js │ │ ├── jquery.validate.min.js │ │ ├── jquery.validate.unobtrusive.js │ │ ├── jquery.validate.unobtrusive.min.js │ │ └── pppddd-application.js │ │ ├── Views │ │ ├── Home │ │ │ └── Index.cshtml │ │ └── web.config │ │ ├── Web.Debug.config │ │ ├── Web.Release.config │ │ ├── Web.config │ │ └── packages.config └── README.md ├── 24 - CQRS An Architecture of A Bounded Context └── README.md ├── 25 - Commands Application Service Patterns for processing Business Use Cases ├── .nuget │ ├── NuGet.Config │ ├── NuGet.exe │ └── NuGet.targets ├── DDDPPP.Chap20.CommandHandler.Application │ ├── Application │ │ ├── Api.cs │ │ ├── Commands │ │ │ ├── AddProductToBasketCommand.cs │ │ │ ├── ApplyCouponToBasketCommand.cs │ │ │ ├── CreateABasketCommand.cs │ │ │ ├── RemoveOfferFromBasketCommand.cs │ │ │ ├── RemoveProductFromBasketCommand.cs │ │ │ └── UpdateBasketDeliveryCountry.cs │ │ ├── Contract │ │ │ └── _readme.txt │ │ ├── Handlers │ │ │ ├── AddProductToBasketCommandHandler.cs │ │ │ ├── ApplyCouponToBasketCommandHandler.cs │ │ │ ├── CreateABasketCommandHandler.cs │ │ │ ├── RemoveCouponFromBasketCommandHandler.cs │ │ │ └── RemoveProductFromBasketCommandHandler.cs │ │ └── ReadModel │ │ │ └── Product.cs │ ├── CommandHandlerRegistry.cs │ ├── DDDPPP.Chap20.CommandHandler.Application.csproj │ ├── DomainEventHandlerRegistery.cs │ ├── Infrastructure │ │ ├── BasketRepository.cs │ │ ├── Mapping │ │ │ ├── Basket.hbm.xml │ │ │ ├── BasketItem.hbm.xml │ │ │ ├── BasketVoucher.hbm.xml │ │ │ ├── Offer.hbm.xml │ │ │ └── Product.hbm.xml │ │ └── PromotionsRepository.cs │ ├── Model │ │ ├── Baskets │ │ │ ├── Basket.cs │ │ │ ├── BasketItem.cs │ │ │ ├── BasketItemFactory.cs │ │ │ ├── BasketPricingBreakdown.cs │ │ │ ├── BasketPricingService.cs │ │ │ ├── Events │ │ │ │ ├── BasketCreated.cs │ │ │ │ ├── BasketModified.cs │ │ │ │ ├── BasketPriceChanged.cs │ │ │ │ └── CouponNotApplicableForBasketItems.cs │ │ │ ├── IBasketPricingService.cs │ │ │ ├── IBasketRepository.cs │ │ │ ├── NonNegativeQuantity.cs │ │ │ └── ProductSnapshot.cs │ │ └── Promotions │ │ │ ├── Coupon.cs │ │ │ ├── CouponIssues.cs │ │ │ ├── ICouponPolicy.cs │ │ │ ├── IPromotionsRepository.cs │ │ │ ├── Promotion.cs │ │ │ └── PromotionNotApplicableException.cs │ └── Properties │ │ └── AssemblyInfo.cs ├── DDDPPP.Chap20.CommandHandler.Presentation │ ├── Content │ │ ├── Site.css │ │ └── themes │ │ │ └── base │ │ │ ├── images │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ ├── ui-icons_454545_256x240.png │ │ │ ├── ui-icons_888888_256x240.png │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ ├── jquery-ui.css │ │ │ ├── jquery.ui.accordion.css │ │ │ ├── jquery.ui.all.css │ │ │ ├── jquery.ui.autocomplete.css │ │ │ ├── jquery.ui.base.css │ │ │ ├── jquery.ui.button.css │ │ │ ├── jquery.ui.core.css │ │ │ ├── jquery.ui.datepicker.css │ │ │ ├── jquery.ui.dialog.css │ │ │ ├── jquery.ui.progressbar.css │ │ │ ├── jquery.ui.resizable.css │ │ │ ├── jquery.ui.selectable.css │ │ │ ├── jquery.ui.slider.css │ │ │ ├── jquery.ui.tabs.css │ │ │ ├── jquery.ui.theme.css │ │ │ └── minified │ │ │ ├── images │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ ├── ui-icons_454545_256x240.png │ │ │ ├── ui-icons_888888_256x240.png │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ ├── jquery-ui.min.css │ │ │ ├── jquery.ui.accordion.min.css │ │ │ ├── jquery.ui.autocomplete.min.css │ │ │ ├── jquery.ui.button.min.css │ │ │ ├── jquery.ui.core.min.css │ │ │ ├── jquery.ui.datepicker.min.css │ │ │ ├── jquery.ui.dialog.min.css │ │ │ ├── jquery.ui.progressbar.min.css │ │ │ ├── jquery.ui.resizable.min.css │ │ │ ├── jquery.ui.selectable.min.css │ │ │ ├── jquery.ui.slider.min.css │ │ │ ├── jquery.ui.tabs.min.css │ │ │ └── jquery.ui.theme.min.css │ ├── Controllers │ │ ├── AccountController.cs │ │ └── HomeController.cs │ ├── DDDPPP.Chap20.CommandHandler.Presentation.csproj │ ├── Global.asax │ ├── Global.asax.cs │ ├── Models │ │ └── AccountModels.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Scripts │ │ ├── MicrosoftAjax.debug.js │ │ ├── MicrosoftAjax.js │ │ ├── MicrosoftMvcAjax.debug.js │ │ ├── MicrosoftMvcAjax.js │ │ ├── MicrosoftMvcValidation.debug.js │ │ ├── MicrosoftMvcValidation.js │ │ ├── jquery-1.7.1.intellisense.js │ │ ├── jquery-1.7.1.js │ │ ├── jquery-1.7.1.min.js │ │ ├── jquery-ui-1.8.20.js │ │ ├── jquery-ui-1.8.20.min.js │ │ ├── jquery.unobtrusive-ajax.js │ │ ├── jquery.unobtrusive-ajax.min.js │ │ ├── jquery.validate-vsdoc.js │ │ ├── jquery.validate.js │ │ ├── jquery.validate.min.js │ │ ├── jquery.validate.unobtrusive.js │ │ ├── jquery.validate.unobtrusive.min.js │ │ └── modernizr-2.5.3.js │ ├── Views │ │ ├── Account │ │ │ ├── ChangePassword.aspx │ │ │ ├── ChangePasswordSuccess.aspx │ │ │ ├── LogOn.aspx │ │ │ └── Register.aspx │ │ ├── Home │ │ │ ├── About.aspx │ │ │ └── Index.aspx │ │ ├── Shared │ │ │ ├── Error.aspx │ │ │ ├── LogOnUserControl.ascx │ │ │ └── Site.Master │ │ └── Web.config │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Web.config │ └── packages.config ├── DDDPPP.Chap20.CommandHandler.sln ├── PPPDDD.ApplicationServices.Gambling │ ├── App_Start │ │ └── RouteConfig.cs │ ├── ApplicationServices │ │ ├── 1_validation │ │ │ └── RecommendAFriendService.cs │ │ ├── 2_transaction │ │ │ └── RecommendAFriendService.cs │ │ ├── 3_error_handling │ │ │ └── RecommendAFriendService.cs │ │ ├── 4_logging_metrics │ │ │ └── RecommendAFriendService.cs │ │ ├── 5_authentication │ │ │ └── AdminRecommendAFriendService.cs │ │ ├── 6_communication │ │ │ └── RecommendAFriendService.cs │ │ ├── AsyncAwait │ │ │ └── RecommendAFriend.cs │ │ ├── CommandProcessor │ │ │ ├── BloatedRecommendAFriendService.cs │ │ │ └── RecommendAFriend.cs │ │ ├── CommandProcessorChained │ │ │ └── RecommendAFriend.cs │ │ ├── FrameworkHooks │ │ │ ├── ErrorFilter.cs │ │ │ └── TransactionFilter.cs │ │ ├── PublishSubscribe │ │ │ └── RecommendAFriend.cs │ │ ├── PublishSubscribeAsync │ │ │ └── ReferAFriend.cs │ │ └── RequestReply │ │ │ └── RecommendAFriend.cs │ ├── Controllers │ │ └── RecommendAFriendController.cs │ ├── Global.asax │ ├── Global.asax.cs │ ├── PPPDDD.ApplicationServices.RecommendAFriend.csproj │ ├── PPPDDD.ApplicationServices.RecommendAFriend.sln │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Views │ │ └── web.config │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Web.config │ └── packages.config ├── PPPDDD.ApplicationServices.RecommendAFriend.sln └── PPPDDD.ApplicationServices.Tests │ ├── Properties │ └── AssemblyInfo.cs │ ├── Refer_a_friend.cs │ ├── Tests.csproj │ └── packages.config ├── 26 - Queries Domain Reporting ├── PPPDDD.Reporting.sln ├── PPPDDD.Reporting │ ├── App_Start │ │ └── RouteConfig.cs │ ├── Controllers │ │ ├── DealershipPerformanceReportController.cs │ │ ├── DealershipReportUsingMediatorController.cs │ │ ├── DenormalizedLoyaltyReportController.cs │ │ ├── HealthcareEventProjectionReportController.cs │ │ └── LoyaltyReportQueryingDatastoreController.cs │ ├── Global.asax │ ├── Global.asax.cs │ ├── PPPDDD.Reporting.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Views │ │ └── web.config │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Web.config │ └── packages.config ├── README.md └── SportsStoreDatabase │ ├── LoyaltyAccounts.sql │ ├── LoyaltySettings.sql │ ├── Orders.sql │ ├── TestData.sql │ ├── Users.sql │ └── sportsstoredatabase.sqlproj ├── README.md └── eBidder Case Study └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/.gitignore -------------------------------------------------------------------------------- /05 - Domain Model Implementation Patterns/PPPDDDChap05.DomainModel/PPPDDDChap05.DomainModel.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/05 - Domain Model Implementation Patterns/PPPDDDChap05.DomainModel/PPPDDDChap05.DomainModel.sln -------------------------------------------------------------------------------- /05 - Domain Model Implementation Patterns/PPPDDDChap05.DomainModel/PPPDDDChap05.DomainModel/Model/Auction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/05 - Domain Model Implementation Patterns/PPPDDDChap05.DomainModel/PPPDDDChap05.DomainModel/Model/Auction.cs -------------------------------------------------------------------------------- /05 - Domain Model Implementation Patterns/PPPDDDChap05.DomainModel/PPPDDDChap05.DomainModel/Model/Bid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/05 - Domain Model Implementation Patterns/PPPDDDChap05.DomainModel/PPPDDDChap05.DomainModel/Model/Bid.cs -------------------------------------------------------------------------------- /05 - Domain Model Implementation Patterns/PPPDDDChap05.DomainModel/PPPDDDChap05.DomainModel/Model/ClassDiagram.cd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/05 - Domain Model Implementation Patterns/PPPDDDChap05.DomainModel/PPPDDDChap05.DomainModel/Model/ClassDiagram.cd -------------------------------------------------------------------------------- /05 - Domain Model Implementation Patterns/PPPDDDChap05.DomainModel/PPPDDDChap05.DomainModel/Model/HistoricalBid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/05 - Domain Model Implementation Patterns/PPPDDDChap05.DomainModel/PPPDDDChap05.DomainModel/Model/HistoricalBid.cs -------------------------------------------------------------------------------- /05 - Domain Model Implementation Patterns/PPPDDDChap05.DomainModel/PPPDDDChap05.DomainModel/Model/Money.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/05 - Domain Model Implementation Patterns/PPPDDDChap05.DomainModel/PPPDDDChap05.DomainModel/Model/Money.cs -------------------------------------------------------------------------------- /05 - Domain Model Implementation Patterns/PPPDDDChap05.DomainModel/PPPDDDChap05.DomainModel/Model/Price.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/05 - Domain Model Implementation Patterns/PPPDDDChap05.DomainModel/PPPDDDChap05.DomainModel/Model/Price.cs -------------------------------------------------------------------------------- /05 - Domain Model Implementation Patterns/PPPDDDChap05.DomainModel/PPPDDDChap05.DomainModel/Model/WinningBid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/05 - Domain Model Implementation Patterns/PPPDDDChap05.DomainModel/PPPDDDChap05.DomainModel/Model/WinningBid.cs -------------------------------------------------------------------------------- /05 - Domain Model Implementation Patterns/PPPDDDChap05.DomainModel/PPPDDDChap05.DomainModel/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/05 - Domain Model Implementation Patterns/PPPDDDChap05.DomainModel/PPPDDDChap05.DomainModel/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /05 - Domain Model Implementation Patterns/PPPDDDChap05.TableModule/PPPDDDChap05.TableModule.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/05 - Domain Model Implementation Patterns/PPPDDDChap05.TableModule/PPPDDDChap05.TableModule.sln -------------------------------------------------------------------------------- /05 - Domain Model Implementation Patterns/PPPDDDChap05.TableModule/PPPDDDChap05.TableModule/Domain/Customers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/05 - Domain Model Implementation Patterns/PPPDDDChap05.TableModule/PPPDDDChap05.TableModule/Domain/Customers.cs -------------------------------------------------------------------------------- /05 - Domain Model Implementation Patterns/PPPDDDChap05.TableModule/PPPDDDChap05.TableModule/Domain/Orders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/05 - Domain Model Implementation Patterns/PPPDDDChap05.TableModule/PPPDDDChap05.TableModule/Domain/Orders.cs -------------------------------------------------------------------------------- /05 - Domain Model Implementation Patterns/PPPDDDChap05.TableModule/PPPDDDChap05.TableModule/Domain/TableModuleBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/05 - Domain Model Implementation Patterns/PPPDDDChap05.TableModule/PPPDDDChap05.TableModule/Domain/TableModuleBase.cs -------------------------------------------------------------------------------- /05 - Domain Model Implementation Patterns/PPPDDDChap05.TableModule/PPPDDDChap05.TableModule/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/05 - Domain Model Implementation Patterns/PPPDDDChap05.TableModule/PPPDDDChap05.TableModule/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /05 - Domain Model Implementation Patterns/PPPDDDChap05.TransactionScript/PPPDDDChap05.TransactionScript.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/05 - Domain Model Implementation Patterns/PPPDDDChap05.TransactionScript/PPPDDDChap05.TransactionScript.sln -------------------------------------------------------------------------------- /10 - Applying the Principles, Practices and Patterns of DDD/PPPDDD.Chap10.ecommerce/PPPDDD.Chap10.ecommerce.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/10 - Applying the Principles, Practices and Patterns of DDD/PPPDDD.Chap10.ecommerce/PPPDDD.Chap10.ecommerce.sln -------------------------------------------------------------------------------- /11 - Integrating Bounded Contexts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/11 - Integrating Bounded Contexts/README.md -------------------------------------------------------------------------------- /12 - Integrating Via Messaging/Billing.Messages/Billing.Messages.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/12 - Integrating Via Messaging/Billing.Messages/Billing.Messages.csproj -------------------------------------------------------------------------------- /12 - Integrating Via Messaging/Billing.Messages/Commands/RecordPaymentAttempt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/12 - Integrating Via Messaging/Billing.Messages/Commands/RecordPaymentAttempt.cs -------------------------------------------------------------------------------- /12 - Integrating Via Messaging/Billing.Messages/Events/PaymentAccepted.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/12 - Integrating Via Messaging/Billing.Messages/Events/PaymentAccepted.cs -------------------------------------------------------------------------------- /12 - Integrating Via Messaging/Billing.Messages/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/12 - Integrating Via Messaging/Billing.Messages/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /12 - Integrating Via Messaging/Billing.Payments.PaymentAccepted/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/12 - Integrating Via Messaging/Billing.Payments.PaymentAccepted/App.config -------------------------------------------------------------------------------- /12 - Integrating Via Messaging/Billing.Payments.PaymentAccepted/Billing.Payments.PaymentAccepted.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/12 - Integrating Via Messaging/Billing.Payments.PaymentAccepted/Billing.Payments.PaymentAccepted.csproj -------------------------------------------------------------------------------- /12 - Integrating Via Messaging/Billing.Payments.PaymentAccepted/EndpointConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/12 - Integrating Via Messaging/Billing.Payments.PaymentAccepted/EndpointConfig.cs -------------------------------------------------------------------------------- /12 - Integrating Via Messaging/Billing.Payments.PaymentAccepted/OrderCreatedHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/12 - Integrating Via Messaging/Billing.Payments.PaymentAccepted/OrderCreatedHandler.cs -------------------------------------------------------------------------------- /12 - Integrating Via Messaging/Billing.Payments.PaymentAccepted/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/12 - Integrating Via Messaging/Billing.Payments.PaymentAccepted/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /12 - Integrating Via Messaging/Billing.Payments.PaymentAccepted/RecordPaymentAttemptHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/12 - Integrating Via Messaging/Billing.Payments.PaymentAccepted/RecordPaymentAttemptHandler.cs -------------------------------------------------------------------------------- /12 - Integrating Via Messaging/Billing.Payments.PaymentAccepted/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/12 - Integrating Via Messaging/Billing.Payments.PaymentAccepted/packages.config -------------------------------------------------------------------------------- /12 - Integrating Via Messaging/DDDesign.Web/App_Start/FilterConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/12 - Integrating Via Messaging/DDDesign.Web/App_Start/FilterConfig.cs -------------------------------------------------------------------------------- /12 - Integrating Via Messaging/DDDesign.Web/App_Start/RouteConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/12 - Integrating Via Messaging/DDDesign.Web/App_Start/RouteConfig.cs -------------------------------------------------------------------------------- /12 - Integrating Via Messaging/DDDesign.Web/App_Start/WebApiConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/12 - Integrating Via Messaging/DDDesign.Web/App_Start/WebApiConfig.cs -------------------------------------------------------------------------------- /12 - Integrating Via Messaging/DDDesign.Web/Controllers/OrdersController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/12 - Integrating Via Messaging/DDDesign.Web/Controllers/OrdersController.cs -------------------------------------------------------------------------------- /12 - Integrating Via Messaging/DDDesign.Web/DDDesign.Web.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/12 - Integrating Via Messaging/DDDesign.Web/DDDesign.Web.csproj -------------------------------------------------------------------------------- /12 - Integrating Via Messaging/DDDesign.Web/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/12 - Integrating Via Messaging/DDDesign.Web/Global.asax -------------------------------------------------------------------------------- /12 - Integrating Via Messaging/DDDesign.Web/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/12 - Integrating Via Messaging/DDDesign.Web/Global.asax.cs -------------------------------------------------------------------------------- /12 - Integrating Via Messaging/DDDesign.Web/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/12 - Integrating Via Messaging/DDDesign.Web/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /12 - Integrating Via Messaging/DDDesign.Web/Views/Orders/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/12 - Integrating Via Messaging/DDDesign.Web/Views/Orders/Index.cshtml -------------------------------------------------------------------------------- /12 - Integrating Via Messaging/DDDesign.Web/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/12 - Integrating Via Messaging/DDDesign.Web/Views/Web.config -------------------------------------------------------------------------------- /12 - Integrating Via Messaging/DDDesign.Web/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/12 - Integrating Via Messaging/DDDesign.Web/Web.Debug.config -------------------------------------------------------------------------------- /12 - Integrating Via Messaging/DDDesign.Web/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/12 - Integrating Via Messaging/DDDesign.Web/Web.Release.config -------------------------------------------------------------------------------- /12 - Integrating Via Messaging/DDDesign.Web/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/12 - Integrating Via Messaging/DDDesign.Web/Web.config -------------------------------------------------------------------------------- /12 - Integrating Via Messaging/DDDesign.Web/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/12 - Integrating Via Messaging/DDDesign.Web/packages.config -------------------------------------------------------------------------------- /12 - Integrating Via Messaging/DDDesign.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/12 - Integrating Via Messaging/DDDesign.sln -------------------------------------------------------------------------------- /12 - Integrating Via Messaging/Promotions.LuckyWinner.LuckyWinnerSelected.Bridge/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/12 - Integrating Via Messaging/Promotions.LuckyWinner.LuckyWinnerSelected.Bridge/App.config -------------------------------------------------------------------------------- /12 - Integrating Via Messaging/Promotions.LuckyWinner.LuckyWinnerSelected.Bridge/Application/OrderCreatedHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/12 - Integrating Via Messaging/Promotions.LuckyWinner.LuckyWinnerSelected.Bridge/Application/OrderCreatedHandler.cs -------------------------------------------------------------------------------- /12 - Integrating Via Messaging/Promotions.LuckyWinner.LuckyWinnerSelected.Bridge/Infrastructure/EndpointConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/12 - Integrating Via Messaging/Promotions.LuckyWinner.LuckyWinnerSelected.Bridge/Infrastructure/EndpointConfig.cs -------------------------------------------------------------------------------- /12 - Integrating Via Messaging/Promotions.LuckyWinner.LuckyWinnerSelected.Bridge/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/12 - Integrating Via Messaging/Promotions.LuckyWinner.LuckyWinnerSelected.Bridge/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /12 - Integrating Via Messaging/Promotions.LuckyWinner.LuckyWinnerSelected.Bridge/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/12 - Integrating Via Messaging/Promotions.LuckyWinner.LuckyWinnerSelected.Bridge/packages.config -------------------------------------------------------------------------------- /12 - Integrating Via Messaging/Promotions.LuckyWinner.LuckyWinnerSelected/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/12 - Integrating Via Messaging/Promotions.LuckyWinner.LuckyWinnerSelected/App.config -------------------------------------------------------------------------------- /12 - Integrating Via Messaging/Promotions.LuckyWinner.LuckyWinnerSelected/Application/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/12 - Integrating Via Messaging/Promotions.LuckyWinner.LuckyWinnerSelected/Application/Program.cs -------------------------------------------------------------------------------- /12 - Integrating Via Messaging/Promotions.LuckyWinner.LuckyWinnerSelected/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/12 - Integrating Via Messaging/Promotions.LuckyWinner.LuckyWinnerSelected/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /12 - Integrating Via Messaging/Promotions.LuckyWinner.LuckyWinnerSelected/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/12 - Integrating Via Messaging/Promotions.LuckyWinner.LuckyWinnerSelected/packages.config -------------------------------------------------------------------------------- /12 - Integrating Via Messaging/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/12 - Integrating Via Messaging/README.md -------------------------------------------------------------------------------- /12 - Integrating Via Messaging/Sales.Messages/Commands/PlaceOrder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/12 - Integrating Via Messaging/Sales.Messages/Commands/PlaceOrder.cs -------------------------------------------------------------------------------- /12 - Integrating Via Messaging/Sales.Messages/Events/OrderCreated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/12 - Integrating Via Messaging/Sales.Messages/Events/OrderCreated.cs -------------------------------------------------------------------------------- /12 - Integrating Via Messaging/Sales.Messages/Events/OrderCreated_V2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/12 - Integrating Via Messaging/Sales.Messages/Events/OrderCreated_V2.cs -------------------------------------------------------------------------------- /12 - Integrating Via Messaging/Sales.Messages/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/12 - Integrating Via Messaging/Sales.Messages/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /12 - Integrating Via Messaging/Sales.Messages/Sales.Messages.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/12 - Integrating Via Messaging/Sales.Messages/Sales.Messages.csproj -------------------------------------------------------------------------------- /12 - Integrating Via Messaging/Sales.Orders.OrderCreated/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/12 - Integrating Via Messaging/Sales.Orders.OrderCreated/App.config -------------------------------------------------------------------------------- /12 - Integrating Via Messaging/Sales.Orders.OrderCreated/Application/PlaceOrderHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/12 - Integrating Via Messaging/Sales.Orders.OrderCreated/Application/PlaceOrderHandler.cs -------------------------------------------------------------------------------- /12 - Integrating Via Messaging/Sales.Orders.OrderCreated/Infrastructure/EndpointConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/12 - Integrating Via Messaging/Sales.Orders.OrderCreated/Infrastructure/EndpointConfig.cs -------------------------------------------------------------------------------- /12 - Integrating Via Messaging/Sales.Orders.OrderCreated/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/12 - Integrating Via Messaging/Sales.Orders.OrderCreated/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /12 - Integrating Via Messaging/Sales.Orders.OrderCreated/Sales.Orders.OrderCreated.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/12 - Integrating Via Messaging/Sales.Orders.OrderCreated/Sales.Orders.OrderCreated.csproj -------------------------------------------------------------------------------- /12 - Integrating Via Messaging/Sales.Orders.OrderCreated/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/12 - Integrating Via Messaging/Sales.Orders.OrderCreated/packages.config -------------------------------------------------------------------------------- /12 - Integrating Via Messaging/Shipping.BusinessCustomers.ShippingArranged/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/12 - Integrating Via Messaging/Shipping.BusinessCustomers.ShippingArranged/App.config -------------------------------------------------------------------------------- /12 - Integrating Via Messaging/Shipping.BusinessCustomers.ShippingArranged/Application/Handlers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/12 - Integrating Via Messaging/Shipping.BusinessCustomers.ShippingArranged/Application/Handlers.cs -------------------------------------------------------------------------------- /12 - Integrating Via Messaging/Shipping.BusinessCustomers.ShippingArranged/Infrastructure/EndpointConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/12 - Integrating Via Messaging/Shipping.BusinessCustomers.ShippingArranged/Infrastructure/EndpointConfig.cs -------------------------------------------------------------------------------- /12 - Integrating Via Messaging/Shipping.BusinessCustomers.ShippingArranged/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/12 - Integrating Via Messaging/Shipping.BusinessCustomers.ShippingArranged/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /12 - Integrating Via Messaging/Shipping.BusinessCustomers.ShippingArranged/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/12 - Integrating Via Messaging/Shipping.BusinessCustomers.ShippingArranged/packages.config -------------------------------------------------------------------------------- /12 - Integrating Via Messaging/Shipping.Messages/Events/ShippingArranged.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/12 - Integrating Via Messaging/Shipping.Messages/Events/ShippingArranged.cs -------------------------------------------------------------------------------- /12 - Integrating Via Messaging/Shipping.Messages/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/12 - Integrating Via Messaging/Shipping.Messages/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /12 - Integrating Via Messaging/Shipping.Messages/Shipping.Messages.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/12 - Integrating Via Messaging/Shipping.Messages/Shipping.Messages.csproj -------------------------------------------------------------------------------- /13 - Integrating Via Http and Rest/PPPDDD.JSON.SocialMedia/AccountManagement/AccountManagement.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/13 - Integrating Via Http and Rest/PPPDDD.JSON.SocialMedia/AccountManagement/AccountManagement.csproj -------------------------------------------------------------------------------- /13 - Integrating Via Http and Rest/PPPDDD.JSON.SocialMedia/AccountManagement/App_Start/WebApiConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/13 - Integrating Via Http and Rest/PPPDDD.JSON.SocialMedia/AccountManagement/App_Start/WebApiConfig.cs -------------------------------------------------------------------------------- /13 - Integrating Via Http and Rest/PPPDDD.JSON.SocialMedia/AccountManagement/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/13 - Integrating Via Http and Rest/PPPDDD.JSON.SocialMedia/AccountManagement/Global.asax -------------------------------------------------------------------------------- /13 - Integrating Via Http and Rest/PPPDDD.JSON.SocialMedia/AccountManagement/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/13 - Integrating Via Http and Rest/PPPDDD.JSON.SocialMedia/AccountManagement/Global.asax.cs -------------------------------------------------------------------------------- /13 - Integrating Via Http and Rest/PPPDDD.JSON.SocialMedia/AccountManagement/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/13 - Integrating Via Http and Rest/PPPDDD.JSON.SocialMedia/AccountManagement/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /13 - Integrating Via Http and Rest/PPPDDD.JSON.SocialMedia/AccountManagement/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/13 - Integrating Via Http and Rest/PPPDDD.JSON.SocialMedia/AccountManagement/Web.Debug.config -------------------------------------------------------------------------------- /13 - Integrating Via Http and Rest/PPPDDD.JSON.SocialMedia/AccountManagement/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/13 - Integrating Via Http and Rest/PPPDDD.JSON.SocialMedia/AccountManagement/Web.Release.config -------------------------------------------------------------------------------- /13 - Integrating Via Http and Rest/PPPDDD.JSON.SocialMedia/AccountManagement/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/13 - Integrating Via Http and Rest/PPPDDD.JSON.SocialMedia/AccountManagement/Web.config -------------------------------------------------------------------------------- /13 - Integrating Via Http and Rest/PPPDDD.JSON.SocialMedia/AccountManagement/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/13 - Integrating Via Http and Rest/PPPDDD.JSON.SocialMedia/AccountManagement/packages.config -------------------------------------------------------------------------------- /13 - Integrating Via Http and Rest/PPPDDD.JSON.SocialMedia/Discovery/App_Start/WebApiConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/13 - Integrating Via Http and Rest/PPPDDD.JSON.SocialMedia/Discovery/App_Start/WebApiConfig.cs -------------------------------------------------------------------------------- /13 - Integrating Via Http and Rest/PPPDDD.JSON.SocialMedia/Discovery/Controllers/RecommenderController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/13 - Integrating Via Http and Rest/PPPDDD.JSON.SocialMedia/Discovery/Controllers/RecommenderController.cs -------------------------------------------------------------------------------- /13 - Integrating Via Http and Rest/PPPDDD.JSON.SocialMedia/Discovery/Discovery.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/13 - Integrating Via Http and Rest/PPPDDD.JSON.SocialMedia/Discovery/Discovery.csproj -------------------------------------------------------------------------------- /13 - Integrating Via Http and Rest/PPPDDD.JSON.SocialMedia/Discovery/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/13 - Integrating Via Http and Rest/PPPDDD.JSON.SocialMedia/Discovery/Global.asax -------------------------------------------------------------------------------- /13 - Integrating Via Http and Rest/PPPDDD.JSON.SocialMedia/Discovery/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/13 - Integrating Via Http and Rest/PPPDDD.JSON.SocialMedia/Discovery/Global.asax.cs -------------------------------------------------------------------------------- /13 - Integrating Via Http and Rest/PPPDDD.JSON.SocialMedia/Discovery/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/13 - Integrating Via Http and Rest/PPPDDD.JSON.SocialMedia/Discovery/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /13 - Integrating Via Http and Rest/PPPDDD.JSON.SocialMedia/Discovery/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/13 - Integrating Via Http and Rest/PPPDDD.JSON.SocialMedia/Discovery/Web.Debug.config -------------------------------------------------------------------------------- /13 - Integrating Via Http and Rest/PPPDDD.JSON.SocialMedia/Discovery/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/13 - Integrating Via Http and Rest/PPPDDD.JSON.SocialMedia/Discovery/Web.Release.config -------------------------------------------------------------------------------- /13 - Integrating Via Http and Rest/PPPDDD.JSON.SocialMedia/Discovery/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/13 - Integrating Via Http and Rest/PPPDDD.JSON.SocialMedia/Discovery/Web.config -------------------------------------------------------------------------------- /13 - Integrating Via Http and Rest/PPPDDD.JSON.SocialMedia/Discovery/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/13 - Integrating Via Http and Rest/PPPDDD.JSON.SocialMedia/Discovery/packages.config -------------------------------------------------------------------------------- /13 - Integrating Via Http and Rest/PPPDDD.JSON.SocialMedia/PPPDDD.JSON.SocialMedia.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/13 - Integrating Via Http and Rest/PPPDDD.JSON.SocialMedia/PPPDDD.JSON.SocialMedia.sln -------------------------------------------------------------------------------- /13 - Integrating Via Http and Rest/PPPDDD.REST.SocialMedia/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/13 - Integrating Via Http and Rest/PPPDDD.REST.SocialMedia/.gitignore -------------------------------------------------------------------------------- /13 - Integrating Via Http and Rest/PPPDDD.REST.SocialMedia/AccountManagement.Accounts.Api/App_Start/WebApiConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/13 - Integrating Via Http and Rest/PPPDDD.REST.SocialMedia/AccountManagement.Accounts.Api/App_Start/WebApiConfig.cs -------------------------------------------------------------------------------- /13 - Integrating Via Http and Rest/PPPDDD.REST.SocialMedia/AccountManagement.Accounts.Api/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/13 - Integrating Via Http and Rest/PPPDDD.REST.SocialMedia/AccountManagement.Accounts.Api/Global.asax -------------------------------------------------------------------------------- /13 - Integrating Via Http and Rest/PPPDDD.REST.SocialMedia/AccountManagement.Accounts.Api/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/13 - Integrating Via Http and Rest/PPPDDD.REST.SocialMedia/AccountManagement.Accounts.Api/Global.asax.cs -------------------------------------------------------------------------------- /13 - Integrating Via Http and Rest/PPPDDD.REST.SocialMedia/AccountManagement.Accounts.Api/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/13 - Integrating Via Http and Rest/PPPDDD.REST.SocialMedia/AccountManagement.Accounts.Api/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /13 - Integrating Via Http and Rest/PPPDDD.REST.SocialMedia/AccountManagement.Accounts.Api/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/13 - Integrating Via Http and Rest/PPPDDD.REST.SocialMedia/AccountManagement.Accounts.Api/Web.Debug.config -------------------------------------------------------------------------------- /13 - Integrating Via Http and Rest/PPPDDD.REST.SocialMedia/AccountManagement.Accounts.Api/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/13 - Integrating Via Http and Rest/PPPDDD.REST.SocialMedia/AccountManagement.Accounts.Api/Web.Release.config -------------------------------------------------------------------------------- /13 - Integrating Via Http and Rest/PPPDDD.REST.SocialMedia/AccountManagement.Accounts.Api/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/13 - Integrating Via Http and Rest/PPPDDD.REST.SocialMedia/AccountManagement.Accounts.Api/Web.config -------------------------------------------------------------------------------- /13 - Integrating Via Http and Rest/PPPDDD.REST.SocialMedia/AccountManagement.Accounts.Api/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/13 - Integrating Via Http and Rest/PPPDDD.REST.SocialMedia/AccountManagement.Accounts.Api/packages.config -------------------------------------------------------------------------------- /13 - Integrating Via Http and Rest/PPPDDD.REST.SocialMedia/AccountManagement.EntryPoint/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /13 - Integrating Via Http and Rest/PPPDDD.REST.SocialMedia/AccountManagement.EntryPoint/App_Start/WebApiConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/13 - Integrating Via Http and Rest/PPPDDD.REST.SocialMedia/AccountManagement.EntryPoint/App_Start/WebApiConfig.cs -------------------------------------------------------------------------------- /13 - Integrating Via Http and Rest/PPPDDD.REST.SocialMedia/AccountManagement.EntryPoint/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/13 - Integrating Via Http and Rest/PPPDDD.REST.SocialMedia/AccountManagement.EntryPoint/Global.asax -------------------------------------------------------------------------------- /13 - Integrating Via Http and Rest/PPPDDD.REST.SocialMedia/AccountManagement.EntryPoint/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/13 - Integrating Via Http and Rest/PPPDDD.REST.SocialMedia/AccountManagement.EntryPoint/Global.asax.cs -------------------------------------------------------------------------------- /13 - Integrating Via Http and Rest/PPPDDD.REST.SocialMedia/AccountManagement.EntryPoint/MIT-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/13 - Integrating Via Http and Rest/PPPDDD.REST.SocialMedia/AccountManagement.EntryPoint/MIT-LICENSE.txt -------------------------------------------------------------------------------- /13 - Integrating Via Http and Rest/PPPDDD.REST.SocialMedia/AccountManagement.EntryPoint/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/13 - Integrating Via Http and Rest/PPPDDD.REST.SocialMedia/AccountManagement.EntryPoint/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /13 - Integrating Via Http and Rest/PPPDDD.REST.SocialMedia/AccountManagement.EntryPoint/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/13 - Integrating Via Http and Rest/PPPDDD.REST.SocialMedia/AccountManagement.EntryPoint/README.md -------------------------------------------------------------------------------- /13 - Integrating Via Http and Rest/PPPDDD.REST.SocialMedia/AccountManagement.EntryPoint/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/13 - Integrating Via Http and Rest/PPPDDD.REST.SocialMedia/AccountManagement.EntryPoint/Web.Debug.config -------------------------------------------------------------------------------- /13 - Integrating Via Http and Rest/PPPDDD.REST.SocialMedia/AccountManagement.EntryPoint/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/13 - Integrating Via Http and Rest/PPPDDD.REST.SocialMedia/AccountManagement.EntryPoint/Web.Release.config -------------------------------------------------------------------------------- /13 - Integrating Via Http and Rest/PPPDDD.REST.SocialMedia/AccountManagement.EntryPoint/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/13 - Integrating Via Http and Rest/PPPDDD.REST.SocialMedia/AccountManagement.EntryPoint/Web.config -------------------------------------------------------------------------------- /13 - Integrating Via Http and Rest/PPPDDD.REST.SocialMedia/AccountManagement.EntryPoint/browser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/13 - Integrating Via Http and Rest/PPPDDD.REST.SocialMedia/AccountManagement.EntryPoint/browser.html -------------------------------------------------------------------------------- /13 - Integrating Via Http and Rest/PPPDDD.REST.SocialMedia/AccountManagement.EntryPoint/js/hal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/13 - Integrating Via Http and Rest/PPPDDD.REST.SocialMedia/AccountManagement.EntryPoint/js/hal.js -------------------------------------------------------------------------------- /13 - Integrating Via Http and Rest/PPPDDD.REST.SocialMedia/AccountManagement.EntryPoint/js/hal/browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/13 - Integrating Via Http and Rest/PPPDDD.REST.SocialMedia/AccountManagement.EntryPoint/js/hal/browser.js -------------------------------------------------------------------------------- /13 - Integrating Via Http and Rest/PPPDDD.REST.SocialMedia/AccountManagement.EntryPoint/js/hal/http/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/13 - Integrating Via Http and Rest/PPPDDD.REST.SocialMedia/AccountManagement.EntryPoint/js/hal/http/client.js -------------------------------------------------------------------------------- /13 - Integrating Via Http and Rest/PPPDDD.REST.SocialMedia/AccountManagement.EntryPoint/js/hal/resource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/13 - Integrating Via Http and Rest/PPPDDD.REST.SocialMedia/AccountManagement.EntryPoint/js/hal/resource.js -------------------------------------------------------------------------------- /13 - Integrating Via Http and Rest/PPPDDD.REST.SocialMedia/AccountManagement.EntryPoint/js/hal/views/browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/13 - Integrating Via Http and Rest/PPPDDD.REST.SocialMedia/AccountManagement.EntryPoint/js/hal/views/browser.js -------------------------------------------------------------------------------- /13 - Integrating Via Http and Rest/PPPDDD.REST.SocialMedia/AccountManagement.EntryPoint/js/hal/views/documentation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/13 - Integrating Via Http and Rest/PPPDDD.REST.SocialMedia/AccountManagement.EntryPoint/js/hal/views/documentation.js -------------------------------------------------------------------------------- /13 - Integrating Via Http and Rest/PPPDDD.REST.SocialMedia/AccountManagement.EntryPoint/js/hal/views/explorer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/13 - Integrating Via Http and Rest/PPPDDD.REST.SocialMedia/AccountManagement.EntryPoint/js/hal/views/explorer.js -------------------------------------------------------------------------------- /13 - Integrating Via Http and Rest/PPPDDD.REST.SocialMedia/AccountManagement.EntryPoint/js/hal/views/inspector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/13 - Integrating Via Http and Rest/PPPDDD.REST.SocialMedia/AccountManagement.EntryPoint/js/hal/views/inspector.js -------------------------------------------------------------------------------- /13 - Integrating Via Http and Rest/PPPDDD.REST.SocialMedia/AccountManagement.EntryPoint/js/hal/views/links.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/13 - Integrating Via Http and Rest/PPPDDD.REST.SocialMedia/AccountManagement.EntryPoint/js/hal/views/links.js -------------------------------------------------------------------------------- /13 - Integrating Via Http and Rest/PPPDDD.REST.SocialMedia/AccountManagement.EntryPoint/js/hal/views/location_bar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/13 - Integrating Via Http and Rest/PPPDDD.REST.SocialMedia/AccountManagement.EntryPoint/js/hal/views/location_bar.js -------------------------------------------------------------------------------- /13 - Integrating Via Http and Rest/PPPDDD.REST.SocialMedia/AccountManagement.EntryPoint/js/hal/views/navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/13 - Integrating Via Http and Rest/PPPDDD.REST.SocialMedia/AccountManagement.EntryPoint/js/hal/views/navigation.js -------------------------------------------------------------------------------- /13 - Integrating Via Http and Rest/PPPDDD.REST.SocialMedia/AccountManagement.EntryPoint/js/hal/views/properties.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/13 - Integrating Via Http and Rest/PPPDDD.REST.SocialMedia/AccountManagement.EntryPoint/js/hal/views/properties.js -------------------------------------------------------------------------------- /13 - Integrating Via Http and Rest/PPPDDD.REST.SocialMedia/AccountManagement.EntryPoint/js/hal/views/resource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/13 - Integrating Via Http and Rest/PPPDDD.REST.SocialMedia/AccountManagement.EntryPoint/js/hal/views/resource.js -------------------------------------------------------------------------------- /13 - Integrating Via Http and Rest/PPPDDD.REST.SocialMedia/AccountManagement.EntryPoint/js/hal/views/response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/13 - Integrating Via Http and Rest/PPPDDD.REST.SocialMedia/AccountManagement.EntryPoint/js/hal/views/response.js -------------------------------------------------------------------------------- /13 - Integrating Via Http and Rest/PPPDDD.REST.SocialMedia/AccountManagement.EntryPoint/js/hal/views/response_body.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/13 - Integrating Via Http and Rest/PPPDDD.REST.SocialMedia/AccountManagement.EntryPoint/js/hal/views/response_body.js -------------------------------------------------------------------------------- /13 - Integrating Via Http and Rest/PPPDDD.REST.SocialMedia/AccountManagement.EntryPoint/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/13 - Integrating Via Http and Rest/PPPDDD.REST.SocialMedia/AccountManagement.EntryPoint/packages.config -------------------------------------------------------------------------------- /13 - Integrating Via Http and Rest/PPPDDD.REST.SocialMedia/AccountManagement.EntryPoint/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/13 - Integrating Via Http and Rest/PPPDDD.REST.SocialMedia/AccountManagement.EntryPoint/styles.css -------------------------------------------------------------------------------- /13 - Integrating Via Http and Rest/PPPDDD.REST.SocialMedia/AccountManagement.EntryPoint/vendor/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/13 - Integrating Via Http and Rest/PPPDDD.REST.SocialMedia/AccountManagement.EntryPoint/vendor/css/bootstrap.css -------------------------------------------------------------------------------- /13 - Integrating Via Http and Rest/PPPDDD.REST.SocialMedia/AccountManagement.EntryPoint/vendor/img/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/13 - Integrating Via Http and Rest/PPPDDD.REST.SocialMedia/AccountManagement.EntryPoint/vendor/img/ajax-loader.gif -------------------------------------------------------------------------------- /13 - Integrating Via Http and Rest/PPPDDD.REST.SocialMedia/AccountManagement.EntryPoint/vendor/js/backbone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/13 - Integrating Via Http and Rest/PPPDDD.REST.SocialMedia/AccountManagement.EntryPoint/vendor/js/backbone.js -------------------------------------------------------------------------------- /13 - Integrating Via Http and Rest/PPPDDD.REST.SocialMedia/AccountManagement.EntryPoint/vendor/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/13 - Integrating Via Http and Rest/PPPDDD.REST.SocialMedia/AccountManagement.EntryPoint/vendor/js/bootstrap.js -------------------------------------------------------------------------------- /13 - Integrating Via Http and Rest/PPPDDD.REST.SocialMedia/AccountManagement.EntryPoint/vendor/js/jquery-1.10.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/13 - Integrating Via Http and Rest/PPPDDD.REST.SocialMedia/AccountManagement.EntryPoint/vendor/js/jquery-1.10.2.js -------------------------------------------------------------------------------- /13 - Integrating Via Http and Rest/PPPDDD.REST.SocialMedia/AccountManagement.EntryPoint/vendor/js/jquery-1.10.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/13 - Integrating Via Http and Rest/PPPDDD.REST.SocialMedia/AccountManagement.EntryPoint/vendor/js/jquery-1.10.2.min.js -------------------------------------------------------------------------------- /13 - Integrating Via Http and Rest/PPPDDD.REST.SocialMedia/AccountManagement.EntryPoint/vendor/js/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/13 - Integrating Via Http and Rest/PPPDDD.REST.SocialMedia/AccountManagement.EntryPoint/vendor/js/underscore.js -------------------------------------------------------------------------------- /13 - Integrating Via Http and Rest/PPPDDD.REST.SocialMedia/AccountManagement.EntryPoint/vendor/js/uritemplates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/13 - Integrating Via Http and Rest/PPPDDD.REST.SocialMedia/AccountManagement.EntryPoint/vendor/js/uritemplates.js -------------------------------------------------------------------------------- /13 - Integrating Via Http and Rest/PPPDDD.REST.SocialMedia/AccountManagement.RegularAccounts.BeganFollowing/App_Start/EnableCorsAttribute.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /13 - Integrating Via Http and Rest/PPPDDD.REST.SocialMedia/AccountManagement.RegularAccounts.BeganFollowing/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/13 - Integrating Via Http and Rest/PPPDDD.REST.SocialMedia/AccountManagement.RegularAccounts.BeganFollowing/Web.config -------------------------------------------------------------------------------- /13 - Integrating Via Http and Rest/PPPDDD.REST.SocialMedia/Discovery.Reccommendations.Followers/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/13 - Integrating Via Http and Rest/PPPDDD.REST.SocialMedia/Discovery.Reccommendations.Followers/packages.config -------------------------------------------------------------------------------- /13 - Integrating Via Http and Rest/PPPDDD.REST.SocialMedia/PPPDDD.REST.SocialMedia.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/13 - Integrating Via Http and Rest/PPPDDD.REST.SocialMedia/PPPDDD.REST.SocialMedia.sln -------------------------------------------------------------------------------- /13 - Integrating Via Http and Rest/PPPDDD.SOAP.SocialMedia/AccountManagement/AccountManagement.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/13 - Integrating Via Http and Rest/PPPDDD.SOAP.SocialMedia/AccountManagement/AccountManagement.csproj -------------------------------------------------------------------------------- /13 - Integrating Via Http and Rest/PPPDDD.SOAP.SocialMedia/AccountManagement/FollowerDirectory.svc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/13 - Integrating Via Http and Rest/PPPDDD.SOAP.SocialMedia/AccountManagement/FollowerDirectory.svc -------------------------------------------------------------------------------- /13 - Integrating Via Http and Rest/PPPDDD.SOAP.SocialMedia/AccountManagement/FollowerDirectory.svc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/13 - Integrating Via Http and Rest/PPPDDD.SOAP.SocialMedia/AccountManagement/FollowerDirectory.svc.cs -------------------------------------------------------------------------------- /13 - Integrating Via Http and Rest/PPPDDD.SOAP.SocialMedia/AccountManagement/IFollowerDirectory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/13 - Integrating Via Http and Rest/PPPDDD.SOAP.SocialMedia/AccountManagement/IFollowerDirectory.cs -------------------------------------------------------------------------------- /13 - Integrating Via Http and Rest/PPPDDD.SOAP.SocialMedia/AccountManagement/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/13 - Integrating Via Http and Rest/PPPDDD.SOAP.SocialMedia/AccountManagement/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /13 - Integrating Via Http and Rest/PPPDDD.SOAP.SocialMedia/AccountManagement/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/13 - Integrating Via Http and Rest/PPPDDD.SOAP.SocialMedia/AccountManagement/Web.Debug.config -------------------------------------------------------------------------------- /13 - Integrating Via Http and Rest/PPPDDD.SOAP.SocialMedia/AccountManagement/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/13 - Integrating Via Http and Rest/PPPDDD.SOAP.SocialMedia/AccountManagement/Web.Release.config -------------------------------------------------------------------------------- /13 - Integrating Via Http and Rest/PPPDDD.SOAP.SocialMedia/AccountManagement/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/13 - Integrating Via Http and Rest/PPPDDD.SOAP.SocialMedia/AccountManagement/Web.config -------------------------------------------------------------------------------- /13 - Integrating Via Http and Rest/PPPDDD.SOAP.SocialMedia/Discovery/Discovery.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/13 - Integrating Via Http and Rest/PPPDDD.SOAP.SocialMedia/Discovery/Discovery.csproj -------------------------------------------------------------------------------- /13 - Integrating Via Http and Rest/PPPDDD.SOAP.SocialMedia/Discovery/IRecommender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/13 - Integrating Via Http and Rest/PPPDDD.SOAP.SocialMedia/Discovery/IRecommender.cs -------------------------------------------------------------------------------- /13 - Integrating Via Http and Rest/PPPDDD.SOAP.SocialMedia/Discovery/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/13 - Integrating Via Http and Rest/PPPDDD.SOAP.SocialMedia/Discovery/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /13 - Integrating Via Http and Rest/PPPDDD.SOAP.SocialMedia/Discovery/Recommender.svc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/13 - Integrating Via Http and Rest/PPPDDD.SOAP.SocialMedia/Discovery/Recommender.svc -------------------------------------------------------------------------------- /13 - Integrating Via Http and Rest/PPPDDD.SOAP.SocialMedia/Discovery/Recommender.svc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/13 - Integrating Via Http and Rest/PPPDDD.SOAP.SocialMedia/Discovery/Recommender.svc.cs -------------------------------------------------------------------------------- /13 - Integrating Via Http and Rest/PPPDDD.SOAP.SocialMedia/Discovery/Service References/AccountManagement/Reference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/13 - Integrating Via Http and Rest/PPPDDD.SOAP.SocialMedia/Discovery/Service References/AccountManagement/Reference.cs -------------------------------------------------------------------------------- /13 - Integrating Via Http and Rest/PPPDDD.SOAP.SocialMedia/Discovery/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/13 - Integrating Via Http and Rest/PPPDDD.SOAP.SocialMedia/Discovery/Web.Debug.config -------------------------------------------------------------------------------- /13 - Integrating Via Http and Rest/PPPDDD.SOAP.SocialMedia/Discovery/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/13 - Integrating Via Http and Rest/PPPDDD.SOAP.SocialMedia/Discovery/Web.Release.config -------------------------------------------------------------------------------- /13 - Integrating Via Http and Rest/PPPDDD.SOAP.SocialMedia/Discovery/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/13 - Integrating Via Http and Rest/PPPDDD.SOAP.SocialMedia/Discovery/Web.config -------------------------------------------------------------------------------- /13 - Integrating Via Http and Rest/PPPDDD.SOAP.SocialMedia/PPPDDD.SOAP.SocialMedia.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/13 - Integrating Via Http and Rest/PPPDDD.SOAP.SocialMedia/PPPDDD.SOAP.SocialMedia.sln -------------------------------------------------------------------------------- /13 - Integrating Via Http and Rest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/13 - Integrating Via Http and Rest/README.md -------------------------------------------------------------------------------- /14 - Introducing Domain Modelling Patterns and Best Practices/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/14 - Introducing Domain Modelling Patterns and Best Practices/README.md -------------------------------------------------------------------------------- /15 - Value Objects/Examples/BankAccount/BankAccount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/15 - Value Objects/Examples/BankAccount/BankAccount.cs -------------------------------------------------------------------------------- /15 - Value Objects/Examples/Examples.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/15 - Value Objects/Examples/Examples.csproj -------------------------------------------------------------------------------- /15 - Value Objects/Examples/Model/BankAccount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/15 - Value Objects/Examples/Model/BankAccount.cs -------------------------------------------------------------------------------- /15 - Value Objects/Examples/Model/Customer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/15 - Value Objects/Examples/Model/Customer.cs -------------------------------------------------------------------------------- /15 - Value Objects/Examples/Model/Meters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/15 - Value Objects/Examples/Model/Meters.cs -------------------------------------------------------------------------------- /15 - Value Objects/Examples/Model/MicroTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/15 - Value Objects/Examples/Model/MicroTypes.cs -------------------------------------------------------------------------------- /15 - Value Objects/Examples/Model/Money.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/15 - Value Objects/Examples/Model/Money.cs -------------------------------------------------------------------------------- /15 - Value Objects/Examples/Model/Name.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/15 - Value Objects/Examples/Model/Name.cs -------------------------------------------------------------------------------- /15 - Value Objects/Examples/Model/ValueObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/15 - Value Objects/Examples/Model/ValueObject.cs -------------------------------------------------------------------------------- /15 - Value Objects/Examples/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/15 - Value Objects/Examples/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /15 - Value Objects/Examples/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/15 - Value Objects/Examples/app.config -------------------------------------------------------------------------------- /15 - Value Objects/Examples/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/15 - Value Objects/Examples/packages.config -------------------------------------------------------------------------------- /15 - Value Objects/PPPDDD.Chap16.ValueObjects.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/15 - Value Objects/PPPDDD.Chap16.ValueObjects.sln -------------------------------------------------------------------------------- /15 - Value Objects/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/15 - Value Objects/README.md -------------------------------------------------------------------------------- /15 - Value Objects/Tests/Tests.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/15 - Value Objects/Tests/Tests.sln -------------------------------------------------------------------------------- /15 - Value Objects/Tests/Tests/Combining_money_tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/15 - Value Objects/Tests/Tests/Combining_money_tests.cs -------------------------------------------------------------------------------- /15 - Value Objects/Tests/Tests/DateTime_immutability_tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/15 - Value Objects/Tests/Tests/DateTime_immutability_tests.cs -------------------------------------------------------------------------------- /15 - Value Objects/Tests/Tests/Denormalized_persistence_example.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/15 - Value Objects/Tests/Tests/Denormalized_persistence_example.cs -------------------------------------------------------------------------------- /15 - Value Objects/Tests/Tests/Meters_equality_tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/15 - Value Objects/Tests/Tests/Meters_equality_tests.cs -------------------------------------------------------------------------------- /15 - Value Objects/Tests/Tests/Micro_types_example_tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/15 - Value Objects/Tests/Tests/Micro_types_example_tests.cs -------------------------------------------------------------------------------- /15 - Value Objects/Tests/Tests/Name_validation_tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/15 - Value Objects/Tests/Tests/Name_validation_tests.cs -------------------------------------------------------------------------------- /15 - Value Objects/Tests/Tests/Normalized_persistence_example.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/15 - Value Objects/Tests/Tests/Normalized_persistence_example.cs -------------------------------------------------------------------------------- /15 - Value Objects/Tests/Tests/Persistence_format_examples.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/15 - Value Objects/Tests/Tests/Persistence_format_examples.cs -------------------------------------------------------------------------------- /15 - Value Objects/Tests/Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/15 - Value Objects/Tests/Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /15 - Value Objects/Tests/Tests/Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/15 - Value Objects/Tests/Tests/Tests.csproj -------------------------------------------------------------------------------- /15 - Value Objects/Tests/Tests/TimeSpan_factory_method_tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/15 - Value Objects/Tests/Tests/TimeSpan_factory_method_tests.cs -------------------------------------------------------------------------------- /15 - Value Objects/Tests/Tests/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/15 - Value Objects/Tests/Tests/app.config -------------------------------------------------------------------------------- /15 - Value Objects/Tests/Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/15 - Value Objects/Tests/Tests/packages.config -------------------------------------------------------------------------------- /16 - Entities/PPPDDDChap17.Entities.Examples/Customer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/16 - Entities/PPPDDDChap17.Entities.Examples/Customer.cs -------------------------------------------------------------------------------- /16 - Entities/PPPDDDChap17.Entities.Examples/Model/Book.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/16 - Entities/PPPDDDChap17.Entities.Examples/Model/Book.cs -------------------------------------------------------------------------------- /16 - Entities/PPPDDDChap17.Entities.Examples/Model/Dice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/16 - Entities/PPPDDDChap17.Entities.Examples/Model/Dice.cs -------------------------------------------------------------------------------- /16 - Entities/PPPDDDChap17.Entities.Examples/Model/FlightBooking.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/16 - Entities/PPPDDDChap17.Entities.Examples/Model/FlightBooking.cs -------------------------------------------------------------------------------- /16 - Entities/PPPDDDChap17.Entities.Examples/Model/GlobalCounter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/16 - Entities/PPPDDDChap17.Entities.Examples/Model/GlobalCounter.cs -------------------------------------------------------------------------------- /16 - Entities/PPPDDDChap17.Entities.Examples/Model/HolidayBooking.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/16 - Entities/PPPDDDChap17.Entities.Examples/Model/HolidayBooking.cs -------------------------------------------------------------------------------- /16 - Entities/PPPDDDChap17.Entities.Examples/Model/Hotel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/16 - Entities/PPPDDDChap17.Entities.Examples/Model/Hotel.cs -------------------------------------------------------------------------------- /16 - Entities/PPPDDDChap17.Entities.Examples/Model/OnlineTakeawayOrder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/16 - Entities/PPPDDDChap17.Entities.Examples/Model/OnlineTakeawayOrder.cs -------------------------------------------------------------------------------- /16 - Entities/PPPDDDChap17.Entities.Examples/Model/SoccerMatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/16 - Entities/PPPDDDChap17.Entities.Examples/Model/SoccerMatch.cs -------------------------------------------------------------------------------- /16 - Entities/PPPDDDChap17.Entities.Examples/Model/Vehicle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/16 - Entities/PPPDDDChap17.Entities.Examples/Model/Vehicle.cs -------------------------------------------------------------------------------- /16 - Entities/PPPDDDChap17.Entities.Examples/PPPDDDChap17.Entities.Examples.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/16 - Entities/PPPDDDChap17.Entities.Examples/PPPDDDChap17.Entities.Examples.csproj -------------------------------------------------------------------------------- /16 - Entities/PPPDDDChap17.Entities.Examples/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/16 - Entities/PPPDDDChap17.Entities.Examples/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /16 - Entities/PPPDDDChap17.Entities.Examples/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/16 - Entities/PPPDDDChap17.Entities.Examples/packages.config -------------------------------------------------------------------------------- /16 - Entities/PPPDDDChap17.Entities.Tests/BookTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/16 - Entities/PPPDDDChap17.Entities.Tests/BookTests.cs -------------------------------------------------------------------------------- /16 - Entities/PPPDDDChap17.Entities.Tests/DatastoreIdGenerationExample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/16 - Entities/PPPDDDChap17.Entities.Tests/DatastoreIdGenerationExample.cs -------------------------------------------------------------------------------- /16 - Entities/PPPDDDChap17.Entities.Tests/FlightBookingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/16 - Entities/PPPDDDChap17.Entities.Tests/FlightBookingTests.cs -------------------------------------------------------------------------------- /16 - Entities/PPPDDDChap17.Entities.Tests/GlobalCounterTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/16 - Entities/PPPDDDChap17.Entities.Tests/GlobalCounterTest.cs -------------------------------------------------------------------------------- /16 - Entities/PPPDDDChap17.Entities.Tests/HolidayBookingTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/16 - Entities/PPPDDDChap17.Entities.Tests/HolidayBookingTest.cs -------------------------------------------------------------------------------- /16 - Entities/PPPDDDChap17.Entities.Tests/HotelTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/16 - Entities/PPPDDDChap17.Entities.Tests/HotelTests.cs -------------------------------------------------------------------------------- /16 - Entities/PPPDDDChap17.Entities.Tests/PPPDDDChap17.Entities.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/16 - Entities/PPPDDDChap17.Entities.Tests/PPPDDDChap17.Entities.Tests.csproj -------------------------------------------------------------------------------- /16 - Entities/PPPDDDChap17.Entities.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/16 - Entities/PPPDDDChap17.Entities.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /16 - Entities/PPPDDDChap17.Entities.Tests/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/16 - Entities/PPPDDDChap17.Entities.Tests/app.config -------------------------------------------------------------------------------- /16 - Entities/PPPDDDChap17.Entities.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/16 - Entities/PPPDDDChap17.Entities.Tests/packages.config -------------------------------------------------------------------------------- /16 - Entities/PPPDDDChap17.Entities.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/16 - Entities/PPPDDDChap17.Entities.sln -------------------------------------------------------------------------------- /16 - Entities/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/16 - Entities/README.md -------------------------------------------------------------------------------- /17 - Domain Services/PPPDDDChap18.DomainServices.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/17 - Domain Services/PPPDDDChap18.DomainServices.sln -------------------------------------------------------------------------------- /17 - Domain Services/PPPDDDChap18.DomainServices/Insurance/Application/MultiMemberInsurancePremium.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/17 - Domain Services/PPPDDDChap18.DomainServices/Insurance/Application/MultiMemberInsurancePremium.cs -------------------------------------------------------------------------------- /17 - Domain Services/PPPDDDChap18.DomainServices/Insurance/Model/IMemberRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/17 - Domain Services/PPPDDDChap18.DomainServices/Insurance/Model/IMemberRepository.cs -------------------------------------------------------------------------------- /17 - Domain Services/PPPDDDChap18.DomainServices/Insurance/Model/IMultiMemberPremiumCalculator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/17 - Domain Services/PPPDDDChap18.DomainServices/Insurance/Model/IMultiMemberPremiumCalculator.cs -------------------------------------------------------------------------------- /17 - Domain Services/PPPDDDChap18.DomainServices/Insurance/Model/IPolicyRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/17 - Domain Services/PPPDDDChap18.DomainServices/Insurance/Model/IPolicyRepository.cs -------------------------------------------------------------------------------- /17 - Domain Services/PPPDDDChap18.DomainServices/Insurance/Model/Member.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/17 - Domain Services/PPPDDDChap18.DomainServices/Insurance/Model/Member.cs -------------------------------------------------------------------------------- /17 - Domain Services/PPPDDDChap18.DomainServices/Insurance/Model/Policy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/17 - Domain Services/PPPDDDChap18.DomainServices/Insurance/Model/Policy.cs -------------------------------------------------------------------------------- /17 - Domain Services/PPPDDDChap18.DomainServices/Insurance/Model/Quote.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/17 - Domain Services/PPPDDDChap18.DomainServices/Insurance/Model/Quote.cs -------------------------------------------------------------------------------- /17 - Domain Services/PPPDDDChap18.DomainServices/OnlineDating/Model/BloodType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/17 - Domain Services/PPPDDDChap18.DomainServices/OnlineDating/Model/BloodType.cs -------------------------------------------------------------------------------- /17 - Domain Services/PPPDDDChap18.DomainServices/OnlineDating/Model/CompatibilityRating.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/17 - Domain Services/PPPDDDChap18.DomainServices/OnlineDating/Model/CompatibilityRating.cs -------------------------------------------------------------------------------- /17 - Domain Services/PPPDDDChap18.DomainServices/OnlineDating/Model/LoveSeeker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/17 - Domain Services/PPPDDDChap18.DomainServices/OnlineDating/Model/LoveSeeker.cs -------------------------------------------------------------------------------- /17 - Domain Services/PPPDDDChap18.DomainServices/OnlineDating/Model/RomanceOMeter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/17 - Domain Services/PPPDDDChap18.DomainServices/OnlineDating/Model/RomanceOMeter.cs -------------------------------------------------------------------------------- /17 - Domain Services/PPPDDDChap18.DomainServices/OnlineGaming/WithDomainServices/Model/Competitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/17 - Domain Services/PPPDDDChap18.DomainServices/OnlineGaming/WithDomainServices/Model/Competitor.cs -------------------------------------------------------------------------------- /17 - Domain Services/PPPDDDChap18.DomainServices/OnlineGaming/WithDomainServices/Model/IGame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/17 - Domain Services/PPPDDDChap18.DomainServices/OnlineGaming/WithDomainServices/Model/IGame.cs -------------------------------------------------------------------------------- /17 - Domain Services/PPPDDDChap18.DomainServices/OnlineGaming/WithDomainServices/Model/IGameRewardPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/17 - Domain Services/PPPDDDChap18.DomainServices/OnlineGaming/WithDomainServices/Model/IGameRewardPolicy.cs -------------------------------------------------------------------------------- /17 - Domain Services/PPPDDDChap18.DomainServices/OnlineGaming/WithDomainServices/Model/IGameScoringPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/17 - Domain Services/PPPDDDChap18.DomainServices/OnlineGaming/WithDomainServices/Model/IGameScoringPolicy.cs -------------------------------------------------------------------------------- /17 - Domain Services/PPPDDDChap18.DomainServices/OnlineGaming/WithDomainServices/Model/IScoreFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/17 - Domain Services/PPPDDDChap18.DomainServices/OnlineGaming/WithDomainServices/Model/IScoreFinder.cs -------------------------------------------------------------------------------- /17 - Domain Services/PPPDDDChap18.DomainServices/OnlineGaming/WithDomainServices/Model/OnlineDeathmatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/17 - Domain Services/PPPDDDChap18.DomainServices/OnlineGaming/WithDomainServices/Model/OnlineDeathmatch.cs -------------------------------------------------------------------------------- /17 - Domain Services/PPPDDDChap18.DomainServices/OnlineGaming/WithDomainServices/Model/Ranking.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/17 - Domain Services/PPPDDDChap18.DomainServices/OnlineGaming/WithDomainServices/Model/Ranking.cs -------------------------------------------------------------------------------- /17 - Domain Services/PPPDDDChap18.DomainServices/OnlineGaming/WithDomainServices/Model/Score.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/17 - Domain Services/PPPDDDChap18.DomainServices/OnlineGaming/WithDomainServices/Model/Score.cs -------------------------------------------------------------------------------- /17 - Domain Services/PPPDDDChap18.DomainServices/OnlineGaming/WithoutDomainServices/Model/Competitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/17 - Domain Services/PPPDDDChap18.DomainServices/OnlineGaming/WithoutDomainServices/Model/Competitor.cs -------------------------------------------------------------------------------- /17 - Domain Services/PPPDDDChap18.DomainServices/OnlineGaming/WithoutDomainServices/Model/OnlineDeathmatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/17 - Domain Services/PPPDDDChap18.DomainServices/OnlineGaming/WithoutDomainServices/Model/OnlineDeathmatch.cs -------------------------------------------------------------------------------- /17 - Domain Services/PPPDDDChap18.DomainServices/OnlineGaming/WithoutDomainServices/Model/Ranking.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/17 - Domain Services/PPPDDDChap18.DomainServices/OnlineGaming/WithoutDomainServices/Model/Ranking.cs -------------------------------------------------------------------------------- /17 - Domain Services/PPPDDDChap18.DomainServices/OnlineGaming/WithoutDomainServices/Model/Score.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/17 - Domain Services/PPPDDDChap18.DomainServices/OnlineGaming/WithoutDomainServices/Model/Score.cs -------------------------------------------------------------------------------- /17 - Domain Services/PPPDDDChap18.DomainServices/PPPDDDChap18.DomainServices.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/17 - Domain Services/PPPDDDChap18.DomainServices/PPPDDDChap18.DomainServices.csproj -------------------------------------------------------------------------------- /17 - Domain Services/PPPDDDChap18.DomainServices/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/17 - Domain Services/PPPDDDChap18.DomainServices/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /17 - Domain Services/PPPDDDChap18.DomainServices/RestaurantBooking/Model/BookingDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/17 - Domain Services/PPPDDDChap18.DomainServices/RestaurantBooking/Model/BookingDetails.cs -------------------------------------------------------------------------------- /17 - Domain Services/PPPDDDChap18.DomainServices/RestaurantBooking/Model/Customer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/17 - Domain Services/PPPDDDChap18.DomainServices/RestaurantBooking/Model/Customer.cs -------------------------------------------------------------------------------- /17 - Domain Services/PPPDDDChap18.DomainServices/RestaurantBooking/Model/DomainEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/17 - Domain Services/PPPDDDChap18.DomainServices/RestaurantBooking/Model/DomainEvents.cs -------------------------------------------------------------------------------- /17 - Domain Services/PPPDDDChap18.DomainServices/RestaurantBooking/Model/Events/BookingConfirmedByCustomer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/17 - Domain Services/PPPDDDChap18.DomainServices/RestaurantBooking/Model/Events/BookingConfirmedByCustomer.cs -------------------------------------------------------------------------------- /17 - Domain Services/PPPDDDChap18.DomainServices/RestaurantBooking/Model/IHandleEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/17 - Domain Services/PPPDDDChap18.DomainServices/RestaurantBooking/Model/IHandleEvents.cs -------------------------------------------------------------------------------- /17 - Domain Services/PPPDDDChap18.DomainServices/RestaurantBooking/Model/Restaurant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/17 - Domain Services/PPPDDDChap18.DomainServices/RestaurantBooking/Model/Restaurant.cs -------------------------------------------------------------------------------- /17 - Domain Services/PPPDDDChap18.DomainServices/RestaurantBooking/Model/RestaurantBooking.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/17 - Domain Services/PPPDDDChap18.DomainServices/RestaurantBooking/Model/RestaurantBooking.cs -------------------------------------------------------------------------------- /17 - Domain Services/PPPDDDChap18.DomainServices/RestaurantBooking/Model/RestaurantBookingFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/17 - Domain Services/PPPDDDChap18.DomainServices/RestaurantBooking/Model/RestaurantBookingFactory.cs -------------------------------------------------------------------------------- /17 - Domain Services/PPPDDDChap18.DomainServices/RestaurantBooking/Model/RestaurantBookingRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/17 - Domain Services/PPPDDDChap18.DomainServices/RestaurantBooking/Model/RestaurantBookingRepository.cs -------------------------------------------------------------------------------- /17 - Domain Services/PPPDDDChap18.DomainServices/RestaurantBooking/Model/RestaurantNotifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/17 - Domain Services/PPPDDDChap18.DomainServices/RestaurantBooking/Model/RestaurantNotifier.cs -------------------------------------------------------------------------------- /17 - Domain Services/PPPDDDChap18.DomainServices/Shipping/Application/ShippingRouteFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/17 - Domain Services/PPPDDDChap18.DomainServices/Shipping/Application/ShippingRouteFinder.cs -------------------------------------------------------------------------------- /17 - Domain Services/PPPDDDChap18.DomainServices/Shipping/Model/IShippingRouteFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/17 - Domain Services/PPPDDDChap18.DomainServices/Shipping/Model/IShippingRouteFinder.cs -------------------------------------------------------------------------------- /17 - Domain Services/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/17 - Domain Services/README.md -------------------------------------------------------------------------------- /18 - Domain Events/.nuget/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/18 - Domain Events/.nuget/NuGet.Config -------------------------------------------------------------------------------- /18 - Domain Events/.nuget/NuGet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/18 - Domain Events/.nuget/NuGet.exe -------------------------------------------------------------------------------- /18 - Domain Events/.nuget/NuGet.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/18 - Domain Events/.nuget/NuGet.targets -------------------------------------------------------------------------------- /18 - Domain Events/DomainEvents.OnlineTakeawayStore.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/18 - Domain Events/DomainEvents.OnlineTakeawayStore.sln -------------------------------------------------------------------------------- /18 - Domain Events/OnlineTakeawayStore.NServiceBus/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/18 - Domain Events/OnlineTakeawayStore.NServiceBus/App.config -------------------------------------------------------------------------------- /18 - Domain Events/OnlineTakeawayStore.NServiceBus/Application/ConfirmDeliveryOfOrder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/18 - Domain Events/OnlineTakeawayStore.NServiceBus/Application/ConfirmDeliveryOfOrder.cs -------------------------------------------------------------------------------- /18 - Domain Events/OnlineTakeawayStore.NServiceBus/Application/Events/RefundDueToLateDelivery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/18 - Domain Events/OnlineTakeawayStore.NServiceBus/Application/Events/RefundDueToLateDelivery.cs -------------------------------------------------------------------------------- /18 - Domain Events/OnlineTakeawayStore.NServiceBus/Infrastructure/EndpointConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/18 - Domain Events/OnlineTakeawayStore.NServiceBus/Infrastructure/EndpointConfig.cs -------------------------------------------------------------------------------- /18 - Domain Events/OnlineTakeawayStore.NServiceBus/Model/Events/DeliveryGuaranteeFailed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/18 - Domain Events/OnlineTakeawayStore.NServiceBus/Model/Events/DeliveryGuaranteeFailed.cs -------------------------------------------------------------------------------- /18 - Domain Events/OnlineTakeawayStore.NServiceBus/Model/FoodDeliveryOrderSteps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/18 - Domain Events/OnlineTakeawayStore.NServiceBus/Model/FoodDeliveryOrderSteps.cs -------------------------------------------------------------------------------- /18 - Domain Events/OnlineTakeawayStore.NServiceBus/Model/IDeliveryGuaranteeOffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/18 - Domain Events/OnlineTakeawayStore.NServiceBus/Model/IDeliveryGuaranteeOffer.cs -------------------------------------------------------------------------------- /18 - Domain Events/OnlineTakeawayStore.NServiceBus/Model/IOrderRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/18 - Domain Events/OnlineTakeawayStore.NServiceBus/Model/IOrderRepository.cs -------------------------------------------------------------------------------- /18 - Domain Events/OnlineTakeawayStore.NServiceBus/Model/OrderForDelivery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/18 - Domain Events/OnlineTakeawayStore.NServiceBus/Model/OrderForDelivery.cs -------------------------------------------------------------------------------- /18 - Domain Events/OnlineTakeawayStore.NServiceBus/OnlineTakeawayStore.NServiceBus.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/18 - Domain Events/OnlineTakeawayStore.NServiceBus/OnlineTakeawayStore.NServiceBus.csproj -------------------------------------------------------------------------------- /18 - Domain Events/OnlineTakeawayStore.NServiceBus/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/18 - Domain Events/OnlineTakeawayStore.NServiceBus/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /18 - Domain Events/OnlineTakeawayStore.NServiceBus/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/18 - Domain Events/OnlineTakeawayStore.NServiceBus/packages.config -------------------------------------------------------------------------------- /18 - Domain Events/OnlineTakeawayStore.NativeEvents/Application/CofirmDeliveryOfOrder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/18 - Domain Events/OnlineTakeawayStore.NativeEvents/Application/CofirmDeliveryOfOrder.cs -------------------------------------------------------------------------------- /18 - Domain Events/OnlineTakeawayStore.NativeEvents/Application/Events/RefundDueToLateDelivery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/18 - Domain Events/OnlineTakeawayStore.NativeEvents/Application/Events/RefundDueToLateDelivery.cs -------------------------------------------------------------------------------- /18 - Domain Events/OnlineTakeawayStore.NativeEvents/Model/Events/DeliveryGuaranteeFailed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/18 - Domain Events/OnlineTakeawayStore.NativeEvents/Model/Events/DeliveryGuaranteeFailed.cs -------------------------------------------------------------------------------- /18 - Domain Events/OnlineTakeawayStore.NativeEvents/Model/FoodDeliveryOrderSteps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/18 - Domain Events/OnlineTakeawayStore.NativeEvents/Model/FoodDeliveryOrderSteps.cs -------------------------------------------------------------------------------- /18 - Domain Events/OnlineTakeawayStore.NativeEvents/Model/IDeliveryGuaranteeOffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/18 - Domain Events/OnlineTakeawayStore.NativeEvents/Model/IDeliveryGuaranteeOffer.cs -------------------------------------------------------------------------------- /18 - Domain Events/OnlineTakeawayStore.NativeEvents/Model/IOrderRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/18 - Domain Events/OnlineTakeawayStore.NativeEvents/Model/IOrderRepository.cs -------------------------------------------------------------------------------- /18 - Domain Events/OnlineTakeawayStore.NativeEvents/Model/OrderForDelivery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/18 - Domain Events/OnlineTakeawayStore.NativeEvents/Model/OrderForDelivery.cs -------------------------------------------------------------------------------- /18 - Domain Events/OnlineTakeawayStore.NativeEvents/OnlineTakeawayStore.NativeEvents.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/18 - Domain Events/OnlineTakeawayStore.NativeEvents/OnlineTakeawayStore.NativeEvents.csproj -------------------------------------------------------------------------------- /18 - Domain Events/OnlineTakeawayStore.NativeEvents/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/18 - Domain Events/OnlineTakeawayStore.NativeEvents/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /18 - Domain Events/OnlineTakeawayStore.NativeEvents/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/18 - Domain Events/OnlineTakeawayStore.NativeEvents/packages.config -------------------------------------------------------------------------------- /18 - Domain Events/OnlineTakeawayStore.ReturnEvents/Application/ConfirmDeliveryOfOrder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/18 - Domain Events/OnlineTakeawayStore.ReturnEvents/Application/ConfirmDeliveryOfOrder.cs -------------------------------------------------------------------------------- /18 - Domain Events/OnlineTakeawayStore.ReturnEvents/Infrastructure/IEventDispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/18 - Domain Events/OnlineTakeawayStore.ReturnEvents/Infrastructure/IEventDispatcher.cs -------------------------------------------------------------------------------- /18 - Domain Events/OnlineTakeawayStore.ReturnEvents/Model/Events/DeliveryGuaranteeFailed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/18 - Domain Events/OnlineTakeawayStore.ReturnEvents/Model/Events/DeliveryGuaranteeFailed.cs -------------------------------------------------------------------------------- /18 - Domain Events/OnlineTakeawayStore.ReturnEvents/Model/FoodDeliveryOrderSteps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/18 - Domain Events/OnlineTakeawayStore.ReturnEvents/Model/FoodDeliveryOrderSteps.cs -------------------------------------------------------------------------------- /18 - Domain Events/OnlineTakeawayStore.ReturnEvents/Model/IDeliveryGuaranteeOffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/18 - Domain Events/OnlineTakeawayStore.ReturnEvents/Model/IDeliveryGuaranteeOffer.cs -------------------------------------------------------------------------------- /18 - Domain Events/OnlineTakeawayStore.ReturnEvents/Model/IOrderRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/18 - Domain Events/OnlineTakeawayStore.ReturnEvents/Model/IOrderRepository.cs -------------------------------------------------------------------------------- /18 - Domain Events/OnlineTakeawayStore.ReturnEvents/Model/OrderForDelivery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/18 - Domain Events/OnlineTakeawayStore.ReturnEvents/Model/OrderForDelivery.cs -------------------------------------------------------------------------------- /18 - Domain Events/OnlineTakeawayStore.ReturnEvents/OnlineTakeawayStore.ReturnEvents.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/18 - Domain Events/OnlineTakeawayStore.ReturnEvents/OnlineTakeawayStore.ReturnEvents.csproj -------------------------------------------------------------------------------- /18 - Domain Events/OnlineTakeawayStore.ReturnEvents/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/18 - Domain Events/OnlineTakeawayStore.ReturnEvents/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /18 - Domain Events/OnlineTakeawayStore.StaticDomainEvents/Application/ConfirmDeliveryOfOrder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/18 - Domain Events/OnlineTakeawayStore.StaticDomainEvents/Application/ConfirmDeliveryOfOrder.cs -------------------------------------------------------------------------------- /18 - Domain Events/OnlineTakeawayStore.StaticDomainEvents/Application/Events/RefundDueToLateDelivery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/18 - Domain Events/OnlineTakeawayStore.StaticDomainEvents/Application/Events/RefundDueToLateDelivery.cs -------------------------------------------------------------------------------- /18 - Domain Events/OnlineTakeawayStore.StaticDomainEvents/Infrastructure/DomainEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/18 - Domain Events/OnlineTakeawayStore.StaticDomainEvents/Infrastructure/DomainEvents.cs -------------------------------------------------------------------------------- /18 - Domain Events/OnlineTakeawayStore.StaticDomainEvents/Model/Events/DeliveryGuaranteeFailed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/18 - Domain Events/OnlineTakeawayStore.StaticDomainEvents/Model/Events/DeliveryGuaranteeFailed.cs -------------------------------------------------------------------------------- /18 - Domain Events/OnlineTakeawayStore.StaticDomainEvents/Model/FoodDeliveryOrderSteps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/18 - Domain Events/OnlineTakeawayStore.StaticDomainEvents/Model/FoodDeliveryOrderSteps.cs -------------------------------------------------------------------------------- /18 - Domain Events/OnlineTakeawayStore.StaticDomainEvents/Model/IDeliveryGuaranteeOffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/18 - Domain Events/OnlineTakeawayStore.StaticDomainEvents/Model/IDeliveryGuaranteeOffer.cs -------------------------------------------------------------------------------- /18 - Domain Events/OnlineTakeawayStore.StaticDomainEvents/Model/IOrderRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/18 - Domain Events/OnlineTakeawayStore.StaticDomainEvents/Model/IOrderRepository.cs -------------------------------------------------------------------------------- /18 - Domain Events/OnlineTakeawayStore.StaticDomainEvents/Model/OrderForDelivery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/18 - Domain Events/OnlineTakeawayStore.StaticDomainEvents/Model/OrderForDelivery.cs -------------------------------------------------------------------------------- /18 - Domain Events/OnlineTakeawayStore.StaticDomainEvents/OnlineTakeawayStore.StaticDomainEvents.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/18 - Domain Events/OnlineTakeawayStore.StaticDomainEvents/OnlineTakeawayStore.StaticDomainEvents.csproj -------------------------------------------------------------------------------- /18 - Domain Events/OnlineTakeawayStore.StaticDomainEvents/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/18 - Domain Events/OnlineTakeawayStore.StaticDomainEvents/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /18 - Domain Events/OnlineTakeawayStore.StaticDomainEvents/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/18 - Domain Events/OnlineTakeawayStore.StaticDomainEvents/packages.config -------------------------------------------------------------------------------- /18 - Domain Events/OnlineTakeawayStore.Tests/OnlineTakeawayStore.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/18 - Domain Events/OnlineTakeawayStore.Tests/OnlineTakeawayStore.Tests.csproj -------------------------------------------------------------------------------- /18 - Domain Events/OnlineTakeawayStore.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/18 - Domain Events/OnlineTakeawayStore.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /18 - Domain Events/OnlineTakeawayStore.Tests/ServiceLayerTestExamples/Delivery_guarantee_failed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/18 - Domain Events/OnlineTakeawayStore.Tests/ServiceLayerTestExamples/Delivery_guarantee_failed.cs -------------------------------------------------------------------------------- /18 - Domain Events/OnlineTakeawayStore.Tests/UnitTestExamples/ReturnDomainEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/18 - Domain Events/OnlineTakeawayStore.Tests/UnitTestExamples/ReturnDomainEvents.cs -------------------------------------------------------------------------------- /18 - Domain Events/OnlineTakeawayStore.Tests/UnitTestExamples/StaticDomainEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/18 - Domain Events/OnlineTakeawayStore.Tests/UnitTestExamples/StaticDomainEvents.cs -------------------------------------------------------------------------------- /18 - Domain Events/OnlineTakeawayStore.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/18 - Domain Events/OnlineTakeawayStore.Tests/packages.config -------------------------------------------------------------------------------- /19 - Aggregates/PPPDDDChap19.eBidder/PPPDDDChap19.eBidder.Common/PPPDDDChap19.eBidder.Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/19 - Aggregates/PPPDDDChap19.eBidder/PPPDDDChap19.eBidder.Common/PPPDDDChap19.eBidder.Common.csproj -------------------------------------------------------------------------------- /19 - Aggregates/PPPDDDChap19.eBidder/PPPDDDChap19.eBidder.Common/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/19 - Aggregates/PPPDDDChap19.eBidder/PPPDDDChap19.eBidder.Common/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /19 - Aggregates/PPPDDDChap19.eBidder/PPPDDDChap19.eBidder.Disputes/PPPDDDChap19.eBidder.Disputes.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/19 - Aggregates/PPPDDDChap19.eBidder/PPPDDDChap19.eBidder.Disputes/PPPDDDChap19.eBidder.Disputes.csproj -------------------------------------------------------------------------------- /19 - Aggregates/PPPDDDChap19.eBidder/PPPDDDChap19.eBidder.Disputes/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/19 - Aggregates/PPPDDDChap19.eBidder/PPPDDDChap19.eBidder.Disputes/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /19 - Aggregates/PPPDDDChap19.eBidder/PPPDDDChap19.eBidder.Disputes/_ReadMe.txt: -------------------------------------------------------------------------------- 1 | This project would hold the code for eBidders dispute system. -------------------------------------------------------------------------------- /19 - Aggregates/PPPDDDChap19.eBidder/PPPDDDChap19.eBidder.Listings/Application/QandA/BusinessUseCases/Answer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/19 - Aggregates/PPPDDDChap19.eBidder/PPPDDDChap19.eBidder.Listings/Application/QandA/BusinessUseCases/Answer.cs -------------------------------------------------------------------------------- /19 - Aggregates/PPPDDDChap19.eBidder/PPPDDDChap19.eBidder.Listings/Application/Watching/BusinessUseCases/WatchItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/19 - Aggregates/PPPDDDChap19.eBidder/PPPDDDChap19.eBidder.Listings/Application/Watching/BusinessUseCases/WatchItem.cs -------------------------------------------------------------------------------- /19 - Aggregates/PPPDDDChap19.eBidder/PPPDDDChap19.eBidder.Listings/Infrastructure/DomainEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/19 - Aggregates/PPPDDDChap19.eBidder/PPPDDDChap19.eBidder.Listings/Infrastructure/DomainEvents.cs -------------------------------------------------------------------------------- /19 - Aggregates/PPPDDDChap19.eBidder/PPPDDDChap19.eBidder.Listings/Infrastructure/Entity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/19 - Aggregates/PPPDDDChap19.eBidder/PPPDDDChap19.eBidder.Listings/Infrastructure/Entity.cs -------------------------------------------------------------------------------- /19 - Aggregates/PPPDDDChap19.eBidder/PPPDDDChap19.eBidder.Listings/Infrastructure/IClock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/19 - Aggregates/PPPDDDChap19.eBidder/PPPDDDChap19.eBidder.Listings/Infrastructure/IClock.cs -------------------------------------------------------------------------------- /19 - Aggregates/PPPDDDChap19.eBidder/PPPDDDChap19.eBidder.Listings/Infrastructure/SystemClock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/19 - Aggregates/PPPDDDChap19.eBidder/PPPDDDChap19.eBidder.Listings/Infrastructure/SystemClock.cs -------------------------------------------------------------------------------- /19 - Aggregates/PPPDDDChap19.eBidder/PPPDDDChap19.eBidder.Listings/Infrastructure/ValueObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/19 - Aggregates/PPPDDDChap19.eBidder/PPPDDDChap19.eBidder.Listings/Infrastructure/ValueObject.cs -------------------------------------------------------------------------------- /19 - Aggregates/PPPDDDChap19.eBidder/PPPDDDChap19.eBidder.Listings/Model/ListingFormat/Auctions/Auction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/19 - Aggregates/PPPDDDChap19.eBidder/PPPDDDChap19.eBidder.Listings/Model/ListingFormat/Auctions/Auction.cs -------------------------------------------------------------------------------- /19 - Aggregates/PPPDDDChap19.eBidder/PPPDDDChap19.eBidder.Listings/Model/ListingFormat/Auctions/AuctionId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/19 - Aggregates/PPPDDDChap19.eBidder/PPPDDDChap19.eBidder.Listings/Model/ListingFormat/Auctions/AuctionId.cs -------------------------------------------------------------------------------- /19 - Aggregates/PPPDDDChap19.eBidder/PPPDDDChap19.eBidder.Listings/Model/ListingFormat/Auctions/AutomaticBidder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/19 - Aggregates/PPPDDDChap19.eBidder/PPPDDDChap19.eBidder.Listings/Model/ListingFormat/Auctions/AutomaticBidder.cs -------------------------------------------------------------------------------- /19 - Aggregates/PPPDDDChap19.eBidder/PPPDDDChap19.eBidder.Listings/Model/ListingFormat/Auctions/BidHistory/Bid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/19 - Aggregates/PPPDDDChap19.eBidder/PPPDDDChap19.eBidder.Listings/Model/ListingFormat/Auctions/BidHistory/Bid.cs -------------------------------------------------------------------------------- /19 - Aggregates/PPPDDDChap19.eBidder/PPPDDDChap19.eBidder.Listings/Model/ListingFormat/Auctions/BidPlaced.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/19 - Aggregates/PPPDDDChap19.eBidder/PPPDDDChap19.eBidder.Listings/Model/ListingFormat/Auctions/BidPlaced.cs -------------------------------------------------------------------------------- /19 - Aggregates/PPPDDDChap19.eBidder/PPPDDDChap19.eBidder.Listings/Model/ListingFormat/Auctions/IAuctionRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/19 - Aggregates/PPPDDDChap19.eBidder/PPPDDDChap19.eBidder.Listings/Model/ListingFormat/Auctions/IAuctionRepository.cs -------------------------------------------------------------------------------- /19 - Aggregates/PPPDDDChap19.eBidder/PPPDDDChap19.eBidder.Listings/Model/ListingFormat/Auctions/Offer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/19 - Aggregates/PPPDDDChap19.eBidder/PPPDDDChap19.eBidder.Listings/Model/ListingFormat/Auctions/Offer.cs -------------------------------------------------------------------------------- /19 - Aggregates/PPPDDDChap19.eBidder/PPPDDDChap19.eBidder.Listings/Model/ListingFormat/Auctions/OutBid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/19 - Aggregates/PPPDDDChap19.eBidder/PPPDDDChap19.eBidder.Listings/Model/ListingFormat/Auctions/OutBid.cs -------------------------------------------------------------------------------- /19 - Aggregates/PPPDDDChap19.eBidder/PPPDDDChap19.eBidder.Listings/Model/ListingFormat/Auctions/Price.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/19 - Aggregates/PPPDDDChap19.eBidder/PPPDDDChap19.eBidder.Listings/Model/ListingFormat/Auctions/Price.cs -------------------------------------------------------------------------------- /19 - Aggregates/PPPDDDChap19.eBidder/PPPDDDChap19.eBidder.Listings/Model/ListingFormat/Auctions/WinningBid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/19 - Aggregates/PPPDDDChap19.eBidder/PPPDDDChap19.eBidder.Listings/Model/ListingFormat/Auctions/WinningBid.cs -------------------------------------------------------------------------------- /19 - Aggregates/PPPDDDChap19.eBidder/PPPDDDChap19.eBidder.Listings/Model/Listings/FormatType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/19 - Aggregates/PPPDDDChap19.eBidder/PPPDDDChap19.eBidder.Listings/Model/Listings/FormatType.cs -------------------------------------------------------------------------------- /19 - Aggregates/PPPDDDChap19.eBidder/PPPDDDChap19.eBidder.Listings/Model/Listings/IListingRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/19 - Aggregates/PPPDDDChap19.eBidder/PPPDDDChap19.eBidder.Listings/Model/Listings/IListingRepository.cs -------------------------------------------------------------------------------- /19 - Aggregates/PPPDDDChap19.eBidder/PPPDDDChap19.eBidder.Listings/Model/Listings/Listing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/19 - Aggregates/PPPDDDChap19.eBidder/PPPDDDChap19.eBidder.Listings/Model/Listings/Listing.cs -------------------------------------------------------------------------------- /19 - Aggregates/PPPDDDChap19.eBidder/PPPDDDChap19.eBidder.Listings/Model/Listings/ListingFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/19 - Aggregates/PPPDDDChap19.eBidder/PPPDDDChap19.eBidder.Listings/Model/Listings/ListingFormat.cs -------------------------------------------------------------------------------- /19 - Aggregates/PPPDDDChap19.eBidder/PPPDDDChap19.eBidder.Listings/Model/Listings/ListingRevision.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/19 - Aggregates/PPPDDDChap19.eBidder/PPPDDDChap19.eBidder.Listings/Model/Listings/ListingRevision.cs -------------------------------------------------------------------------------- /19 - Aggregates/PPPDDDChap19.eBidder/PPPDDDChap19.eBidder.Listings/Model/Listings/ListingRevisionEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/19 - Aggregates/PPPDDDChap19.eBidder/PPPDDDChap19.eBidder.Listings/Model/Listings/ListingRevisionEvent.cs -------------------------------------------------------------------------------- /19 - Aggregates/PPPDDDChap19.eBidder/PPPDDDChap19.eBidder.Listings/Model/Members/IMemberService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/19 - Aggregates/PPPDDDChap19.eBidder/PPPDDDChap19.eBidder.Listings/Model/Members/IMemberService.cs -------------------------------------------------------------------------------- /19 - Aggregates/PPPDDDChap19.eBidder/PPPDDDChap19.eBidder.Listings/Model/Members/Member.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/19 - Aggregates/PPPDDDChap19.eBidder/PPPDDDChap19.eBidder.Listings/Model/Members/Member.cs -------------------------------------------------------------------------------- /19 - Aggregates/PPPDDDChap19.eBidder/PPPDDDChap19.eBidder.Listings/Model/Money.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/19 - Aggregates/PPPDDDChap19.eBidder/PPPDDDChap19.eBidder.Listings/Model/Money.cs -------------------------------------------------------------------------------- /19 - Aggregates/PPPDDDChap19.eBidder/PPPDDDChap19.eBidder.Listings/Model/MoneyCannotBeANegativeValueException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/19 - Aggregates/PPPDDDChap19.eBidder/PPPDDDChap19.eBidder.Listings/Model/MoneyCannotBeANegativeValueException.cs -------------------------------------------------------------------------------- /19 - Aggregates/PPPDDDChap19.eBidder/PPPDDDChap19.eBidder.Listings/Model/QandA/Answer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/19 - Aggregates/PPPDDDChap19.eBidder/PPPDDDChap19.eBidder.Listings/Model/QandA/Answer.cs -------------------------------------------------------------------------------- /19 - Aggregates/PPPDDDChap19.eBidder/PPPDDDChap19.eBidder.Listings/Model/QandA/IQuestionRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/19 - Aggregates/PPPDDDChap19.eBidder/PPPDDDChap19.eBidder.Listings/Model/QandA/IQuestionRepository.cs -------------------------------------------------------------------------------- /19 - Aggregates/PPPDDDChap19.eBidder/PPPDDDChap19.eBidder.Listings/Model/QandA/Question.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/19 - Aggregates/PPPDDDChap19.eBidder/PPPDDDChap19.eBidder.Listings/Model/QandA/Question.cs -------------------------------------------------------------------------------- /19 - Aggregates/PPPDDDChap19.eBidder/PPPDDDChap19.eBidder.Listings/Model/QandA/QuestionAnswered.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/19 - Aggregates/PPPDDDChap19.eBidder/PPPDDDChap19.eBidder.Listings/Model/QandA/QuestionAnswered.cs -------------------------------------------------------------------------------- /19 - Aggregates/PPPDDDChap19.eBidder/PPPDDDChap19.eBidder.Listings/Model/QandA/QuestionSubmitted.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/19 - Aggregates/PPPDDDChap19.eBidder/PPPDDDChap19.eBidder.Listings/Model/QandA/QuestionSubmitted.cs -------------------------------------------------------------------------------- /19 - Aggregates/PPPDDDChap19.eBidder/PPPDDDChap19.eBidder.Listings/Model/Sellers/ISellerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/19 - Aggregates/PPPDDDChap19.eBidder/PPPDDDChap19.eBidder.Listings/Model/Sellers/ISellerService.cs -------------------------------------------------------------------------------- /19 - Aggregates/PPPDDDChap19.eBidder/PPPDDDChap19.eBidder.Listings/Model/Sellers/Seller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/19 - Aggregates/PPPDDDChap19.eBidder/PPPDDDChap19.eBidder.Listings/Model/Sellers/Seller.cs -------------------------------------------------------------------------------- /19 - Aggregates/PPPDDDChap19.eBidder/PPPDDDChap19.eBidder.Listings/Model/WatchLists/IWatchedItemRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/19 - Aggregates/PPPDDDChap19.eBidder/PPPDDDChap19.eBidder.Listings/Model/WatchLists/IWatchedItemRepository.cs -------------------------------------------------------------------------------- /19 - Aggregates/PPPDDDChap19.eBidder/PPPDDDChap19.eBidder.Listings/Model/WatchLists/WatchedItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/19 - Aggregates/PPPDDDChap19.eBidder/PPPDDDChap19.eBidder.Listings/Model/WatchLists/WatchedItem.cs -------------------------------------------------------------------------------- /19 - Aggregates/PPPDDDChap19.eBidder/PPPDDDChap19.eBidder.Listings/PPPDDDChap19.eBidder.Listings.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/19 - Aggregates/PPPDDDChap19.eBidder/PPPDDDChap19.eBidder.Listings/PPPDDDChap19.eBidder.Listings.csproj -------------------------------------------------------------------------------- /19 - Aggregates/PPPDDDChap19.eBidder/PPPDDDChap19.eBidder.Listings/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/19 - Aggregates/PPPDDDChap19.eBidder/PPPDDDChap19.eBidder.Listings/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /19 - Aggregates/PPPDDDChap19.eBidder/PPPDDDChap19.eBidder.Membership/Model/Members/IMemberRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/19 - Aggregates/PPPDDDChap19.eBidder/PPPDDDChap19.eBidder.Membership/Model/Members/IMemberRepository.cs -------------------------------------------------------------------------------- /19 - Aggregates/PPPDDDChap19.eBidder/PPPDDDChap19.eBidder.Membership/Model/Members/Member.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/19 - Aggregates/PPPDDDChap19.eBidder/PPPDDDChap19.eBidder.Membership/Model/Members/Member.cs -------------------------------------------------------------------------------- /19 - Aggregates/PPPDDDChap19.eBidder/PPPDDDChap19.eBidder.Membership/PPPDDDChap19.eBidder.Membership.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/19 - Aggregates/PPPDDDChap19.eBidder/PPPDDDChap19.eBidder.Membership/PPPDDDChap19.eBidder.Membership.csproj -------------------------------------------------------------------------------- /19 - Aggregates/PPPDDDChap19.eBidder/PPPDDDChap19.eBidder.Membership/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/19 - Aggregates/PPPDDDChap19.eBidder/PPPDDDChap19.eBidder.Membership/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /19 - Aggregates/PPPDDDChap19.eBidder/PPPDDDChap19.eBidder.Membership/_ReadMe.txt: -------------------------------------------------------------------------------- 1 | This project would hold the code for eBidders seller account. -------------------------------------------------------------------------------- /19 - Aggregates/PPPDDDChap19.eBidder/PPPDDDChap19.eBidder.SellerAccount/PPPDDDChap19.eBidder.SellerAccount.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/19 - Aggregates/PPPDDDChap19.eBidder/PPPDDDChap19.eBidder.SellerAccount/PPPDDDChap19.eBidder.SellerAccount.csproj -------------------------------------------------------------------------------- /19 - Aggregates/PPPDDDChap19.eBidder/PPPDDDChap19.eBidder.SellerAccount/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/19 - Aggregates/PPPDDDChap19.eBidder/PPPDDDChap19.eBidder.SellerAccount/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /19 - Aggregates/PPPDDDChap19.eBidder/PPPDDDChap19.eBidder.SellerAccount/_ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/19 - Aggregates/PPPDDDChap19.eBidder/PPPDDDChap19.eBidder.SellerAccount/_ReadMe.txt -------------------------------------------------------------------------------- /19 - Aggregates/PPPDDDChap19.eBidder/PPPDDDChap19.eBidder.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/19 - Aggregates/PPPDDDChap19.eBidder/PPPDDDChap19.eBidder.sln -------------------------------------------------------------------------------- /19 - Aggregates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/19 - Aggregates/README.md -------------------------------------------------------------------------------- /20 - Factories/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/20 - Factories/README.md -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.EFExample/.nuget/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.EFExample/.nuget/NuGet.Config -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.EFExample/.nuget/NuGet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.EFExample/.nuget/NuGet.exe -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.EFExample/.nuget/NuGet.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.EFExample/.nuget/NuGet.targets -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.EFExample/DDDPPP.Chap21.EFExample.Application/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.EFExample/DDDPPP.Chap21.EFExample.Application/App.config -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.EFExample/DDDPPP.Chap21.EFExample.Application/Application/Queries/AuctionStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.EFExample/DDDPPP.Chap21.EFExample.Application/Application/Queries/AuctionStatus.cs -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.EFExample/DDDPPP.Chap21.EFExample.Application/Application/Queries/BidHistoryQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.EFExample/DDDPPP.Chap21.EFExample.Application/Application/Queries/BidHistoryQuery.cs -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.EFExample/DDDPPP.Chap21.EFExample.Application/Application/Queries/BidInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.EFExample/DDDPPP.Chap21.EFExample.Application/Application/Queries/BidInformation.cs -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.EFExample/DDDPPP.Chap21.EFExample.Application/Bootstrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.EFExample/DDDPPP.Chap21.EFExample.Application/Bootstrapper.cs -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.EFExample/DDDPPP.Chap21.EFExample.Application/Infrastructure/AuctionDatabaseContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.EFExample/DDDPPP.Chap21.EFExample.Application/Infrastructure/AuctionDatabaseContext.cs -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.EFExample/DDDPPP.Chap21.EFExample.Application/Infrastructure/AuctionRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.EFExample/DDDPPP.Chap21.EFExample.Application/Infrastructure/AuctionRepository.cs -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.EFExample/DDDPPP.Chap21.EFExample.Application/Infrastructure/BidHistoryRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.EFExample/DDDPPP.Chap21.EFExample.Application/Infrastructure/BidHistoryRepository.cs -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.EFExample/DDDPPP.Chap21.EFExample.Application/Infrastructure/DataModel/AuctionDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.EFExample/DDDPPP.Chap21.EFExample.Application/Infrastructure/DataModel/AuctionDTO.cs -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.EFExample/DDDPPP.Chap21.EFExample.Application/Infrastructure/DataModel/BidDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.EFExample/DDDPPP.Chap21.EFExample.Application/Infrastructure/DataModel/BidDTO.cs -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.EFExample/DDDPPP.Chap21.EFExample.Application/Infrastructure/DomainEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.EFExample/DDDPPP.Chap21.EFExample.Application/Infrastructure/DomainEvents.cs -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.EFExample/DDDPPP.Chap21.EFExample.Application/Infrastructure/Entity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.EFExample/DDDPPP.Chap21.EFExample.Application/Infrastructure/Entity.cs -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.EFExample/DDDPPP.Chap21.EFExample.Application/Infrastructure/IClock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.EFExample/DDDPPP.Chap21.EFExample.Application/Infrastructure/IClock.cs -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.EFExample/DDDPPP.Chap21.EFExample.Application/Infrastructure/Mapping/AuctionMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.EFExample/DDDPPP.Chap21.EFExample.Application/Infrastructure/Mapping/AuctionMap.cs -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.EFExample/DDDPPP.Chap21.EFExample.Application/Infrastructure/Mapping/BidMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.EFExample/DDDPPP.Chap21.EFExample.Application/Infrastructure/Mapping/BidMap.cs -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.EFExample/DDDPPP.Chap21.EFExample.Application/Infrastructure/SystemClock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.EFExample/DDDPPP.Chap21.EFExample.Application/Infrastructure/SystemClock.cs -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.EFExample/DDDPPP.Chap21.EFExample.Application/Infrastructure/ValueObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.EFExample/DDDPPP.Chap21.EFExample.Application/Infrastructure/ValueObject.cs -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.EFExample/DDDPPP.Chap21.EFExample.Application/Model/Auction/Auction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.EFExample/DDDPPP.Chap21.EFExample.Application/Model/Auction/Auction.cs -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.EFExample/DDDPPP.Chap21.EFExample.Application/Model/Auction/AuctionSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.EFExample/DDDPPP.Chap21.EFExample.Application/Model/Auction/AuctionSnapshot.cs -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.EFExample/DDDPPP.Chap21.EFExample.Application/Model/Auction/AutomaticBidder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.EFExample/DDDPPP.Chap21.EFExample.Application/Model/Auction/AutomaticBidder.cs -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.EFExample/DDDPPP.Chap21.EFExample.Application/Model/Auction/BidPlaced.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.EFExample/DDDPPP.Chap21.EFExample.Application/Model/Auction/BidPlaced.cs -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.EFExample/DDDPPP.Chap21.EFExample.Application/Model/Auction/IAuctionRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.EFExample/DDDPPP.Chap21.EFExample.Application/Model/Auction/IAuctionRepository.cs -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.EFExample/DDDPPP.Chap21.EFExample.Application/Model/Auction/Money.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.EFExample/DDDPPP.Chap21.EFExample.Application/Model/Auction/Money.cs -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.EFExample/DDDPPP.Chap21.EFExample.Application/Model/Auction/MoneySnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.EFExample/DDDPPP.Chap21.EFExample.Application/Model/Auction/MoneySnapshot.cs -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.EFExample/DDDPPP.Chap21.EFExample.Application/Model/Auction/Offer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.EFExample/DDDPPP.Chap21.EFExample.Application/Model/Auction/Offer.cs -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.EFExample/DDDPPP.Chap21.EFExample.Application/Model/Auction/OutBid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.EFExample/DDDPPP.Chap21.EFExample.Application/Model/Auction/OutBid.cs -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.EFExample/DDDPPP.Chap21.EFExample.Application/Model/Auction/Price.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.EFExample/DDDPPP.Chap21.EFExample.Application/Model/Auction/Price.cs -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.EFExample/DDDPPP.Chap21.EFExample.Application/Model/Auction/WinningBid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.EFExample/DDDPPP.Chap21.EFExample.Application/Model/Auction/WinningBid.cs -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.EFExample/DDDPPP.Chap21.EFExample.Application/Model/Auction/WinningBidSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.EFExample/DDDPPP.Chap21.EFExample.Application/Model/Auction/WinningBidSnapshot.cs -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.EFExample/DDDPPP.Chap21.EFExample.Application/Model/BidHistory/Bid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.EFExample/DDDPPP.Chap21.EFExample.Application/Model/BidHistory/Bid.cs -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.EFExample/DDDPPP.Chap21.EFExample.Application/Model/BidHistory/BidHistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.EFExample/DDDPPP.Chap21.EFExample.Application/Model/BidHistory/BidHistory.cs -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.EFExample/DDDPPP.Chap21.EFExample.Application/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.EFExample/DDDPPP.Chap21.EFExample.Application/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.EFExample/DDDPPP.Chap21.EFExample.Application/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.EFExample/DDDPPP.Chap21.EFExample.Application/packages.config -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.EFExample/DDDPPP.Chap21.EFExample.Presentation/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.EFExample/DDDPPP.Chap21.EFExample.Presentation/App.config -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.EFExample/DDDPPP.Chap21.EFExample.Presentation/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.EFExample/DDDPPP.Chap21.EFExample.Presentation/Program.cs -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.EFExample/DDDPPP.Chap21.EFExample.Presentation/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.EFExample/DDDPPP.Chap21.EFExample.Presentation/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.EFExample/DDDPPP.Chap21.EFExample.Presentation/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.EFExample/DDDPPP.Chap21.EFExample.Presentation/packages.config -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.EFExample/DDDPPP.Chap21.EFExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.EFExample/DDDPPP.Chap21.EFExample.sln -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.MicroORM/.nuget/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.MicroORM/.nuget/NuGet.Config -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.MicroORM/.nuget/NuGet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.MicroORM/.nuget/NuGet.exe -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.MicroORM/.nuget/NuGet.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.MicroORM/.nuget/NuGet.targets -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.MicroORM/DDDPPP.Chap21.MicroORM.Application/Application/Queries/AuctionStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.MicroORM/DDDPPP.Chap21.MicroORM.Application/Application/Queries/AuctionStatus.cs -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.MicroORM/DDDPPP.Chap21.MicroORM.Application/Application/Queries/AuctionStatusQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.MicroORM/DDDPPP.Chap21.MicroORM.Application/Application/Queries/AuctionStatusQuery.cs -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.MicroORM/DDDPPP.Chap21.MicroORM.Application/Application/Queries/BidHistoryQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.MicroORM/DDDPPP.Chap21.MicroORM.Application/Application/Queries/BidHistoryQuery.cs -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.MicroORM/DDDPPP.Chap21.MicroORM.Application/Application/Queries/BidInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.MicroORM/DDDPPP.Chap21.MicroORM.Application/Application/Queries/BidInformation.cs -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.MicroORM/DDDPPP.Chap21.MicroORM.Application/Bootstrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.MicroORM/DDDPPP.Chap21.MicroORM.Application/Bootstrapper.cs -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.MicroORM/DDDPPP.Chap21.MicroORM.Application/DDDPPP.Chap21.MicroORM.Application.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.MicroORM/DDDPPP.Chap21.MicroORM.Application/DDDPPP.Chap21.MicroORM.Application.csproj -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.MicroORM/DDDPPP.Chap21.MicroORM.Application/Infrastructure/AuctionRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.MicroORM/DDDPPP.Chap21.MicroORM.Application/Infrastructure/AuctionRepository.cs -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.MicroORM/DDDPPP.Chap21.MicroORM.Application/Infrastructure/BidHistoryRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.MicroORM/DDDPPP.Chap21.MicroORM.Application/Infrastructure/BidHistoryRepository.cs -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.MicroORM/DDDPPP.Chap21.MicroORM.Application/Infrastructure/ConcurrencyException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.MicroORM/DDDPPP.Chap21.MicroORM.Application/Infrastructure/ConcurrencyException.cs -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.MicroORM/DDDPPP.Chap21.MicroORM.Application/Infrastructure/DataModel/AuctionDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.MicroORM/DDDPPP.Chap21.MicroORM.Application/Infrastructure/DataModel/AuctionDTO.cs -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.MicroORM/DDDPPP.Chap21.MicroORM.Application/Infrastructure/DataModel/BidDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.MicroORM/DDDPPP.Chap21.MicroORM.Application/Infrastructure/DataModel/BidDTO.cs -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.MicroORM/DDDPPP.Chap21.MicroORM.Application/Infrastructure/DomainEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.MicroORM/DDDPPP.Chap21.MicroORM.Application/Infrastructure/DomainEvents.cs -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.MicroORM/DDDPPP.Chap21.MicroORM.Application/Infrastructure/Entity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.MicroORM/DDDPPP.Chap21.MicroORM.Application/Infrastructure/Entity.cs -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.MicroORM/DDDPPP.Chap21.MicroORM.Application/Infrastructure/IAggregateDataModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.MicroORM/DDDPPP.Chap21.MicroORM.Application/Infrastructure/IAggregateDataModel.cs -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.MicroORM/DDDPPP.Chap21.MicroORM.Application/Infrastructure/IClock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.MicroORM/DDDPPP.Chap21.MicroORM.Application/Infrastructure/IClock.cs -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.MicroORM/DDDPPP.Chap21.MicroORM.Application/Infrastructure/IUnitOfWork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.MicroORM/DDDPPP.Chap21.MicroORM.Application/Infrastructure/IUnitOfWork.cs -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.MicroORM/DDDPPP.Chap21.MicroORM.Application/Infrastructure/IUnitOfWorkRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.MicroORM/DDDPPP.Chap21.MicroORM.Application/Infrastructure/IUnitOfWorkRepository.cs -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.MicroORM/DDDPPP.Chap21.MicroORM.Application/Infrastructure/SystemClock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.MicroORM/DDDPPP.Chap21.MicroORM.Application/Infrastructure/SystemClock.cs -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.MicroORM/DDDPPP.Chap21.MicroORM.Application/Infrastructure/UnitOfWork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.MicroORM/DDDPPP.Chap21.MicroORM.Application/Infrastructure/UnitOfWork.cs -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.MicroORM/DDDPPP.Chap21.MicroORM.Application/Infrastructure/ValueObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.MicroORM/DDDPPP.Chap21.MicroORM.Application/Infrastructure/ValueObject.cs -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.MicroORM/DDDPPP.Chap21.MicroORM.Application/Model/Auction/Auction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.MicroORM/DDDPPP.Chap21.MicroORM.Application/Model/Auction/Auction.cs -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.MicroORM/DDDPPP.Chap21.MicroORM.Application/Model/Auction/AuctionSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.MicroORM/DDDPPP.Chap21.MicroORM.Application/Model/Auction/AuctionSnapshot.cs -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.MicroORM/DDDPPP.Chap21.MicroORM.Application/Model/Auction/Bid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.MicroORM/DDDPPP.Chap21.MicroORM.Application/Model/Auction/Bid.cs -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.MicroORM/DDDPPP.Chap21.MicroORM.Application/Model/Auction/BidPlaced.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.MicroORM/DDDPPP.Chap21.MicroORM.Application/Model/Auction/BidPlaced.cs -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.MicroORM/DDDPPP.Chap21.MicroORM.Application/Model/Auction/IAuctionRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.MicroORM/DDDPPP.Chap21.MicroORM.Application/Model/Auction/IAuctionRepository.cs -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.MicroORM/DDDPPP.Chap21.MicroORM.Application/Model/Auction/Money.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.MicroORM/DDDPPP.Chap21.MicroORM.Application/Model/Auction/Money.cs -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.MicroORM/DDDPPP.Chap21.MicroORM.Application/Model/Auction/MoneySnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.MicroORM/DDDPPP.Chap21.MicroORM.Application/Model/Auction/MoneySnapshot.cs -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.MicroORM/DDDPPP.Chap21.MicroORM.Application/Model/Auction/OutBid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.MicroORM/DDDPPP.Chap21.MicroORM.Application/Model/Auction/OutBid.cs -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.MicroORM/DDDPPP.Chap21.MicroORM.Application/Model/Auction/Price.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.MicroORM/DDDPPP.Chap21.MicroORM.Application/Model/Auction/Price.cs -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.MicroORM/DDDPPP.Chap21.MicroORM.Application/Model/Auction/WinningBid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.MicroORM/DDDPPP.Chap21.MicroORM.Application/Model/Auction/WinningBid.cs -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.MicroORM/DDDPPP.Chap21.MicroORM.Application/Model/Auction/WinningBidSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.MicroORM/DDDPPP.Chap21.MicroORM.Application/Model/Auction/WinningBidSnapshot.cs -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.MicroORM/DDDPPP.Chap21.MicroORM.Application/Model/BidHistory/BidHistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.MicroORM/DDDPPP.Chap21.MicroORM.Application/Model/BidHistory/BidHistory.cs -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.MicroORM/DDDPPP.Chap21.MicroORM.Application/Model/BidHistory/HistoricalBid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.MicroORM/DDDPPP.Chap21.MicroORM.Application/Model/BidHistory/HistoricalBid.cs -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.MicroORM/DDDPPP.Chap21.MicroORM.Application/Model/BidHistory/IBidHistoryRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.MicroORM/DDDPPP.Chap21.MicroORM.Application/Model/BidHistory/IBidHistoryRepository.cs -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.MicroORM/DDDPPP.Chap21.MicroORM.Application/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.MicroORM/DDDPPP.Chap21.MicroORM.Application/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.MicroORM/DDDPPP.Chap21.MicroORM.Application/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.MicroORM/DDDPPP.Chap21.MicroORM.Application/packages.config -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.MicroORM/DDDPPP.Chap21.MicroORM.Presentation/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.MicroORM/DDDPPP.Chap21.MicroORM.Presentation/App.config -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.MicroORM/DDDPPP.Chap21.MicroORM.Presentation/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.MicroORM/DDDPPP.Chap21.MicroORM.Presentation/Program.cs -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.MicroORM/DDDPPP.Chap21.MicroORM.Presentation/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.MicroORM/DDDPPP.Chap21.MicroORM.Presentation/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.MicroORM/DDDPPP.Chap21.MicroORM.Presentation/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.MicroORM/DDDPPP.Chap21.MicroORM.Presentation/packages.config -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.MicroORM/DDDPPP.Chap21.MicroORM.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.MicroORM/DDDPPP.Chap21.MicroORM.sln -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.NHibernateExample/.nuget/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.NHibernateExample/.nuget/NuGet.Config -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.NHibernateExample/.nuget/NuGet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.NHibernateExample/.nuget/NuGet.exe -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.NHibernateExample/.nuget/NuGet.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.NHibernateExample/.nuget/NuGet.targets -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.NHibernateExample/DDDPPP.Chap21.NHibernateExample.Application/Bootstrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.NHibernateExample/DDDPPP.Chap21.NHibernateExample.Application/Bootstrapper.cs -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.NHibernateExample/DDDPPP.Chap21.NHibernateExample.Application/Infrastructure/Entity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.NHibernateExample/DDDPPP.Chap21.NHibernateExample.Application/Infrastructure/Entity.cs -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.NHibernateExample/DDDPPP.Chap21.NHibernateExample.Application/Infrastructure/IClock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.NHibernateExample/DDDPPP.Chap21.NHibernateExample.Application/Infrastructure/IClock.cs -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.NHibernateExample/DDDPPP.Chap21.NHibernateExample.Application/Model/Auction/Auction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.NHibernateExample/DDDPPP.Chap21.NHibernateExample.Application/Model/Auction/Auction.cs -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.NHibernateExample/DDDPPP.Chap21.NHibernateExample.Application/Model/Auction/Money.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.NHibernateExample/DDDPPP.Chap21.NHibernateExample.Application/Model/Auction/Money.cs -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.NHibernateExample/DDDPPP.Chap21.NHibernateExample.Application/Model/Auction/Offer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.NHibernateExample/DDDPPP.Chap21.NHibernateExample.Application/Model/Auction/Offer.cs -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.NHibernateExample/DDDPPP.Chap21.NHibernateExample.Application/Model/Auction/OutBid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.NHibernateExample/DDDPPP.Chap21.NHibernateExample.Application/Model/Auction/OutBid.cs -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.NHibernateExample/DDDPPP.Chap21.NHibernateExample.Application/Model/Auction/Price.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.NHibernateExample/DDDPPP.Chap21.NHibernateExample.Application/Model/Auction/Price.cs -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.NHibernateExample/DDDPPP.Chap21.NHibernateExample.Application/Model/BidHistory/Bid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.NHibernateExample/DDDPPP.Chap21.NHibernateExample.Application/Model/BidHistory/Bid.cs -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.NHibernateExample/DDDPPP.Chap21.NHibernateExample.Application/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.NHibernateExample/DDDPPP.Chap21.NHibernateExample.Application/packages.config -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.NHibernateExample/DDDPPP.Chap21.NHibernateExample.Presentation/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.NHibernateExample/DDDPPP.Chap21.NHibernateExample.Presentation/App.config -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.NHibernateExample/DDDPPP.Chap21.NHibernateExample.Presentation/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.NHibernateExample/DDDPPP.Chap21.NHibernateExample.Presentation/Program.cs -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.NHibernateExample/DDDPPP.Chap21.NHibernateExample.Presentation/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.NHibernateExample/DDDPPP.Chap21.NHibernateExample.Presentation/packages.config -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.NHibernateExample/DDDPPP.Chap21.NHibernateExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.NHibernateExample/DDDPPP.Chap21.NHibernateExample.sln -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.RavenDBExample/.nuget/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.RavenDBExample/.nuget/NuGet.Config -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.RavenDBExample/.nuget/NuGet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.RavenDBExample/.nuget/NuGet.exe -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.RavenDBExample/.nuget/NuGet.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.RavenDBExample/.nuget/NuGet.targets -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.RavenDBExample/DDDPPP.Chap21.RavenDBExample.Application.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.RavenDBExample/DDDPPP.Chap21.RavenDBExample.Application.Tests/packages.config -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.RavenDBExample/DDDPPP.Chap21.RavenDBExample.Application/Bootstrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.RavenDBExample/DDDPPP.Chap21.RavenDBExample.Application/Bootstrapper.cs -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.RavenDBExample/DDDPPP.Chap21.RavenDBExample.Application/Infrastructure/DomainEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.RavenDBExample/DDDPPP.Chap21.RavenDBExample.Application/Infrastructure/DomainEvents.cs -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.RavenDBExample/DDDPPP.Chap21.RavenDBExample.Application/Infrastructure/Entity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.RavenDBExample/DDDPPP.Chap21.RavenDBExample.Application/Infrastructure/Entity.cs -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.RavenDBExample/DDDPPP.Chap21.RavenDBExample.Application/Infrastructure/IClock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.RavenDBExample/DDDPPP.Chap21.RavenDBExample.Application/Infrastructure/IClock.cs -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.RavenDBExample/DDDPPP.Chap21.RavenDBExample.Application/Infrastructure/SystemClock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.RavenDBExample/DDDPPP.Chap21.RavenDBExample.Application/Infrastructure/SystemClock.cs -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.RavenDBExample/DDDPPP.Chap21.RavenDBExample.Application/Infrastructure/ValueObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.RavenDBExample/DDDPPP.Chap21.RavenDBExample.Application/Infrastructure/ValueObject.cs -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.RavenDBExample/DDDPPP.Chap21.RavenDBExample.Application/Model/Auction/Auction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.RavenDBExample/DDDPPP.Chap21.RavenDBExample.Application/Model/Auction/Auction.cs -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.RavenDBExample/DDDPPP.Chap21.RavenDBExample.Application/Model/Auction/BidPlaced.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.RavenDBExample/DDDPPP.Chap21.RavenDBExample.Application/Model/Auction/BidPlaced.cs -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.RavenDBExample/DDDPPP.Chap21.RavenDBExample.Application/Model/Auction/Money.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.RavenDBExample/DDDPPP.Chap21.RavenDBExample.Application/Model/Auction/Money.cs -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.RavenDBExample/DDDPPP.Chap21.RavenDBExample.Application/Model/Auction/Offer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.RavenDBExample/DDDPPP.Chap21.RavenDBExample.Application/Model/Auction/Offer.cs -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.RavenDBExample/DDDPPP.Chap21.RavenDBExample.Application/Model/Auction/OutBid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.RavenDBExample/DDDPPP.Chap21.RavenDBExample.Application/Model/Auction/OutBid.cs -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.RavenDBExample/DDDPPP.Chap21.RavenDBExample.Application/Model/Auction/Price.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.RavenDBExample/DDDPPP.Chap21.RavenDBExample.Application/Model/Auction/Price.cs -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.RavenDBExample/DDDPPP.Chap21.RavenDBExample.Application/Model/Auction/WinningBid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.RavenDBExample/DDDPPP.Chap21.RavenDBExample.Application/Model/Auction/WinningBid.cs -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.RavenDBExample/DDDPPP.Chap21.RavenDBExample.Application/Model/BidHistory/Bid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.RavenDBExample/DDDPPP.Chap21.RavenDBExample.Application/Model/BidHistory/Bid.cs -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.RavenDBExample/DDDPPP.Chap21.RavenDBExample.Application/Model/BidHistory/BidHistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.RavenDBExample/DDDPPP.Chap21.RavenDBExample.Application/Model/BidHistory/BidHistory.cs -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.RavenDBExample/DDDPPP.Chap21.RavenDBExample.Application/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.RavenDBExample/DDDPPP.Chap21.RavenDBExample.Application/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.RavenDBExample/DDDPPP.Chap21.RavenDBExample.Application/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.RavenDBExample/DDDPPP.Chap21.RavenDBExample.Application/packages.config -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.RavenDBExample/DDDPPP.Chap21.RavenDBExample.Presentation/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.RavenDBExample/DDDPPP.Chap21.RavenDBExample.Presentation/App.config -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.RavenDBExample/DDDPPP.Chap21.RavenDBExample.Presentation/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.RavenDBExample/DDDPPP.Chap21.RavenDBExample.Presentation/Program.cs -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.RavenDBExample/DDDPPP.Chap21.RavenDBExample.Presentation/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.RavenDBExample/DDDPPP.Chap21.RavenDBExample.Presentation/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.RavenDBExample/DDDPPP.Chap21.RavenDBExample.Presentation/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.RavenDBExample/DDDPPP.Chap21.RavenDBExample.Presentation/packages.config -------------------------------------------------------------------------------- /21 - Repositories/DDDPPP.Chap21.RavenDBExample/DDDPPP.Chap21.RavenDBExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/DDDPPP.Chap21.RavenDBExample/DDDPPP.Chap21.RavenDBExample.sln -------------------------------------------------------------------------------- /21 - Repositories/Database_script_for_examples.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/21 - Repositories/Database_script_for_examples.sql -------------------------------------------------------------------------------- /22 - Event Sourcing/PPPDDD.Chap23.EventSourcing.EventStoreDemo/GetEventStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/22 - Event Sourcing/PPPDDD.Chap23.EventSourcing.EventStoreDemo/GetEventStore.cs -------------------------------------------------------------------------------- /22 - Event Sourcing/PPPDDD.Chap23.EventSourcing.EventStoreDemo/ImportTestData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/22 - Event Sourcing/PPPDDD.Chap23.EventSourcing.EventStoreDemo/ImportTestData.cs -------------------------------------------------------------------------------- /22 - Event Sourcing/PPPDDD.Chap23.EventSourcing.EventStoreDemo/PPPDDD.Chap23.EventSourcing.EventStoreDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/22 - Event Sourcing/PPPDDD.Chap23.EventSourcing.EventStoreDemo/PPPDDD.Chap23.EventSourcing.EventStoreDemo.csproj -------------------------------------------------------------------------------- /22 - Event Sourcing/PPPDDD.Chap23.EventSourcing.EventStoreDemo/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/22 - Event Sourcing/PPPDDD.Chap23.EventSourcing.EventStoreDemo/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /22 - Event Sourcing/PPPDDD.Chap23.EventSourcing.EventStoreDemo/Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/22 - Event Sourcing/PPPDDD.Chap23.EventSourcing.EventStoreDemo/Tests.cs -------------------------------------------------------------------------------- /22 - Event Sourcing/PPPDDD.Chap23.EventSourcing.EventStoreDemo/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/22 - Event Sourcing/PPPDDD.Chap23.EventSourcing.EventStoreDemo/packages.config -------------------------------------------------------------------------------- /22 - Event Sourcing/PPPDDDChap22/.nuget/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/22 - Event Sourcing/PPPDDDChap22/.nuget/NuGet.Config -------------------------------------------------------------------------------- /22 - Event Sourcing/PPPDDDChap22/.nuget/NuGet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/22 - Event Sourcing/PPPDDDChap22/.nuget/NuGet.exe -------------------------------------------------------------------------------- /22 - Event Sourcing/PPPDDDChap22/.nuget/NuGet.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/22 - Event Sourcing/PPPDDDChap22/.nuget/NuGet.targets -------------------------------------------------------------------------------- /22 - Event Sourcing/PPPDDDChap22/PPPDDDChap23.EventSourcing.Application/Application/BusinessUseCases/CreateAccount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/22 - Event Sourcing/PPPDDDChap22/PPPDDDChap23.EventSourcing.Application/Application/BusinessUseCases/CreateAccount.cs -------------------------------------------------------------------------------- /22 - Event Sourcing/PPPDDDChap22/PPPDDDChap23.EventSourcing.Application/Application/BusinessUseCases/TopUpCredit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/22 - Event Sourcing/PPPDDDChap22/PPPDDDChap23.EventSourcing.Application/Application/BusinessUseCases/TopUpCredit.cs -------------------------------------------------------------------------------- /22 - Event Sourcing/PPPDDDChap22/PPPDDDChap23.EventSourcing.Application/Bootstrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/22 - Event Sourcing/PPPDDDChap22/PPPDDDChap23.EventSourcing.Application/Bootstrapper.cs -------------------------------------------------------------------------------- /22 - Event Sourcing/PPPDDDChap22/PPPDDDChap23.EventSourcing.Application/Infrastructure/Entity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/22 - Event Sourcing/PPPDDDChap22/PPPDDDChap23.EventSourcing.Application/Infrastructure/Entity.cs -------------------------------------------------------------------------------- /22 - Event Sourcing/PPPDDDChap22/PPPDDDChap23.EventSourcing.Application/Infrastructure/EventSourcedAggregate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/22 - Event Sourcing/PPPDDDChap22/PPPDDDChap23.EventSourcing.Application/Infrastructure/EventSourcedAggregate.cs -------------------------------------------------------------------------------- /22 - Event Sourcing/PPPDDDChap22/PPPDDDChap23.EventSourcing.Application/Infrastructure/EventStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/22 - Event Sourcing/PPPDDDChap22/PPPDDDChap23.EventSourcing.Application/Infrastructure/EventStore.cs -------------------------------------------------------------------------------- /22 - Event Sourcing/PPPDDDChap22/PPPDDDChap23.EventSourcing.Application/Infrastructure/EventStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/22 - Event Sourcing/PPPDDDChap22/PPPDDDChap23.EventSourcing.Application/Infrastructure/EventStream.cs -------------------------------------------------------------------------------- /22 - Event Sourcing/PPPDDDChap22/PPPDDDChap23.EventSourcing.Application/Infrastructure/EventWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/22 - Event Sourcing/PPPDDDChap22/PPPDDDChap23.EventSourcing.Application/Infrastructure/EventWrapper.cs -------------------------------------------------------------------------------- /22 - Event Sourcing/PPPDDDChap22/PPPDDDChap23.EventSourcing.Application/Infrastructure/IClock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/22 - Event Sourcing/PPPDDDChap22/PPPDDDChap23.EventSourcing.Application/Infrastructure/IClock.cs -------------------------------------------------------------------------------- /22 - Event Sourcing/PPPDDDChap22/PPPDDDChap23.EventSourcing.Application/Infrastructure/PayAsYouGoAccountRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/22 - Event Sourcing/PPPDDDChap22/PPPDDDChap23.EventSourcing.Application/Infrastructure/PayAsYouGoAccountRepository.cs -------------------------------------------------------------------------------- /22 - Event Sourcing/PPPDDDChap22/PPPDDDChap23.EventSourcing.Application/Infrastructure/SystemClock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/22 - Event Sourcing/PPPDDDChap22/PPPDDDChap23.EventSourcing.Application/Infrastructure/SystemClock.cs -------------------------------------------------------------------------------- /22 - Event Sourcing/PPPDDDChap22/PPPDDDChap23.EventSourcing.Application/Infrastructure/ValueObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/22 - Event Sourcing/PPPDDDChap22/PPPDDDChap23.EventSourcing.Application/Infrastructure/ValueObject.cs -------------------------------------------------------------------------------- /22 - Event Sourcing/PPPDDDChap22/PPPDDDChap23.EventSourcing.Application/Model/PayAsYouGo/AccountCreated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/22 - Event Sourcing/PPPDDDChap22/PPPDDDChap23.EventSourcing.Application/Model/PayAsYouGo/AccountCreated.cs -------------------------------------------------------------------------------- /22 - Event Sourcing/PPPDDDChap22/PPPDDDChap23.EventSourcing.Application/Model/PayAsYouGo/CreditAdded.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/22 - Event Sourcing/PPPDDDChap22/PPPDDDChap23.EventSourcing.Application/Model/PayAsYouGo/CreditAdded.cs -------------------------------------------------------------------------------- /22 - Event Sourcing/PPPDDDChap22/PPPDDDChap23.EventSourcing.Application/Model/PayAsYouGo/FreeCallAllowance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/22 - Event Sourcing/PPPDDDChap22/PPPDDDChap23.EventSourcing.Application/Model/PayAsYouGo/FreeCallAllowance.cs -------------------------------------------------------------------------------- /22 - Event Sourcing/PPPDDDChap22/PPPDDDChap23.EventSourcing.Application/Model/PayAsYouGo/Minutes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/22 - Event Sourcing/PPPDDDChap22/PPPDDDChap23.EventSourcing.Application/Model/PayAsYouGo/Minutes.cs -------------------------------------------------------------------------------- /22 - Event Sourcing/PPPDDDChap22/PPPDDDChap23.EventSourcing.Application/Model/PayAsYouGo/Money.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/22 - Event Sourcing/PPPDDDChap22/PPPDDDChap23.EventSourcing.Application/Model/PayAsYouGo/Money.cs -------------------------------------------------------------------------------- /22 - Event Sourcing/PPPDDDChap22/PPPDDDChap23.EventSourcing.Application/Model/PayAsYouGo/PayAsYouGoAccount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/22 - Event Sourcing/PPPDDDChap22/PPPDDDChap23.EventSourcing.Application/Model/PayAsYouGo/PayAsYouGoAccount.cs -------------------------------------------------------------------------------- /22 - Event Sourcing/PPPDDDChap22/PPPDDDChap23.EventSourcing.Application/Model/PayAsYouGo/PhoneCall.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/22 - Event Sourcing/PPPDDDChap22/PPPDDDChap23.EventSourcing.Application/Model/PayAsYouGo/PhoneCall.cs -------------------------------------------------------------------------------- /22 - Event Sourcing/PPPDDDChap22/PPPDDDChap23.EventSourcing.Application/Model/PayAsYouGo/PhoneCallCharged.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/22 - Event Sourcing/PPPDDDChap22/PPPDDDChap23.EventSourcing.Application/Model/PayAsYouGo/PhoneCallCharged.cs -------------------------------------------------------------------------------- /22 - Event Sourcing/PPPDDDChap22/PPPDDDChap23.EventSourcing.Application/Model/PayAsYouGo/PhoneCallCosting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/22 - Event Sourcing/PPPDDDChap22/PPPDDDChap23.EventSourcing.Application/Model/PayAsYouGo/PhoneCallCosting.cs -------------------------------------------------------------------------------- /22 - Event Sourcing/PPPDDDChap22/PPPDDDChap23.EventSourcing.Application/Model/PayAsYouGo/PhoneNumber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/22 - Event Sourcing/PPPDDDChap22/PPPDDDChap23.EventSourcing.Application/Model/PayAsYouGo/PhoneNumber.cs -------------------------------------------------------------------------------- /22 - Event Sourcing/PPPDDDChap22/PPPDDDChap23.EventSourcing.Application/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/22 - Event Sourcing/PPPDDDChap22/PPPDDDChap23.EventSourcing.Application/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /22 - Event Sourcing/PPPDDDChap22/PPPDDDChap23.EventSourcing.Application/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/22 - Event Sourcing/PPPDDDChap22/PPPDDDChap23.EventSourcing.Application/packages.config -------------------------------------------------------------------------------- /22 - Event Sourcing/PPPDDDChap22/PPPDDDChap23.EventSourcing.ApplicationTests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/22 - Event Sourcing/PPPDDDChap22/PPPDDDChap23.EventSourcing.ApplicationTests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /22 - Event Sourcing/PPPDDDChap22/PPPDDDChap23.EventSourcing.ApplicationTests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/22 - Event Sourcing/PPPDDDChap22/PPPDDDChap23.EventSourcing.ApplicationTests/packages.config -------------------------------------------------------------------------------- /22 - Event Sourcing/PPPDDDChap22/PPPDDDChap23.EventSourcing.Presentation/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/22 - Event Sourcing/PPPDDDChap22/PPPDDDChap23.EventSourcing.Presentation/App.config -------------------------------------------------------------------------------- /22 - Event Sourcing/PPPDDDChap22/PPPDDDChap23.EventSourcing.Presentation/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/22 - Event Sourcing/PPPDDDChap22/PPPDDDChap23.EventSourcing.Presentation/Program.cs -------------------------------------------------------------------------------- /22 - Event Sourcing/PPPDDDChap22/PPPDDDChap23.EventSourcing.Presentation/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/22 - Event Sourcing/PPPDDDChap22/PPPDDDChap23.EventSourcing.Presentation/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /22 - Event Sourcing/PPPDDDChap22/PPPDDDChap23.EventSourcing.Presentation/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/22 - Event Sourcing/PPPDDDChap22/PPPDDDChap23.EventSourcing.Presentation/packages.config -------------------------------------------------------------------------------- /22 - Event Sourcing/PPPDDDChap22/PPPDDDChap23.EventSourcing.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/22 - Event Sourcing/PPPDDDChap22/PPPDDDChap23.EventSourcing.sln -------------------------------------------------------------------------------- /22 - Event Sourcing/PPPDDDChap23.EventSourcing/.nuget/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/22 - Event Sourcing/PPPDDDChap23.EventSourcing/.nuget/NuGet.Config -------------------------------------------------------------------------------- /22 - Event Sourcing/PPPDDDChap23.EventSourcing/.nuget/NuGet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/22 - Event Sourcing/PPPDDDChap23.EventSourcing/.nuget/NuGet.exe -------------------------------------------------------------------------------- /22 - Event Sourcing/PPPDDDChap23.EventSourcing/.nuget/NuGet.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/22 - Event Sourcing/PPPDDDChap23.EventSourcing/.nuget/NuGet.targets -------------------------------------------------------------------------------- /22 - Event Sourcing/PPPDDDChap23.EventSourcing/PPPDDDChap23.EventSourcing.Application/Bootstrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/22 - Event Sourcing/PPPDDDChap23.EventSourcing/PPPDDDChap23.EventSourcing.Application/Bootstrapper.cs -------------------------------------------------------------------------------- /22 - Event Sourcing/PPPDDDChap23.EventSourcing/PPPDDDChap23.EventSourcing.Application/Infrastructure/DomainEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/22 - Event Sourcing/PPPDDDChap23.EventSourcing/PPPDDDChap23.EventSourcing.Application/Infrastructure/DomainEvent.cs -------------------------------------------------------------------------------- /22 - Event Sourcing/PPPDDDChap23.EventSourcing/PPPDDDChap23.EventSourcing.Application/Infrastructure/Entity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/22 - Event Sourcing/PPPDDDChap23.EventSourcing/PPPDDDChap23.EventSourcing.Application/Infrastructure/Entity.cs -------------------------------------------------------------------------------- /22 - Event Sourcing/PPPDDDChap23.EventSourcing/PPPDDDChap23.EventSourcing.Application/Infrastructure/EventStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/22 - Event Sourcing/PPPDDDChap23.EventSourcing/PPPDDDChap23.EventSourcing.Application/Infrastructure/EventStore.cs -------------------------------------------------------------------------------- /22 - Event Sourcing/PPPDDDChap23.EventSourcing/PPPDDDChap23.EventSourcing.Application/Infrastructure/EventStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/22 - Event Sourcing/PPPDDDChap23.EventSourcing/PPPDDDChap23.EventSourcing.Application/Infrastructure/EventStream.cs -------------------------------------------------------------------------------- /22 - Event Sourcing/PPPDDDChap23.EventSourcing/PPPDDDChap23.EventSourcing.Application/Infrastructure/EventWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/22 - Event Sourcing/PPPDDDChap23.EventSourcing/PPPDDDChap23.EventSourcing.Application/Infrastructure/EventWrapper.cs -------------------------------------------------------------------------------- /22 - Event Sourcing/PPPDDDChap23.EventSourcing/PPPDDDChap23.EventSourcing.Application/Infrastructure/IClock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/22 - Event Sourcing/PPPDDDChap23.EventSourcing/PPPDDDChap23.EventSourcing.Application/Infrastructure/IClock.cs -------------------------------------------------------------------------------- /22 - Event Sourcing/PPPDDDChap23.EventSourcing/PPPDDDChap23.EventSourcing.Application/Infrastructure/SystemClock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/22 - Event Sourcing/PPPDDDChap23.EventSourcing/PPPDDDChap23.EventSourcing.Application/Infrastructure/SystemClock.cs -------------------------------------------------------------------------------- /22 - Event Sourcing/PPPDDDChap23.EventSourcing/PPPDDDChap23.EventSourcing.Application/Infrastructure/ValueObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/22 - Event Sourcing/PPPDDDChap23.EventSourcing/PPPDDDChap23.EventSourcing.Application/Infrastructure/ValueObject.cs -------------------------------------------------------------------------------- /22 - Event Sourcing/PPPDDDChap23.EventSourcing/PPPDDDChap23.EventSourcing.Application/Model/PayAsYouGo/Minutes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/22 - Event Sourcing/PPPDDDChap23.EventSourcing/PPPDDDChap23.EventSourcing.Application/Model/PayAsYouGo/Minutes.cs -------------------------------------------------------------------------------- /22 - Event Sourcing/PPPDDDChap23.EventSourcing/PPPDDDChap23.EventSourcing.Application/Model/PayAsYouGo/Money.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/22 - Event Sourcing/PPPDDDChap23.EventSourcing/PPPDDDChap23.EventSourcing.Application/Model/PayAsYouGo/Money.cs -------------------------------------------------------------------------------- /22 - Event Sourcing/PPPDDDChap23.EventSourcing/PPPDDDChap23.EventSourcing.Application/Model/PayAsYouGo/PhoneCall.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/22 - Event Sourcing/PPPDDDChap23.EventSourcing/PPPDDDChap23.EventSourcing.Application/Model/PayAsYouGo/PhoneCall.cs -------------------------------------------------------------------------------- /22 - Event Sourcing/PPPDDDChap23.EventSourcing/PPPDDDChap23.EventSourcing.Application/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/22 - Event Sourcing/PPPDDDChap23.EventSourcing/PPPDDDChap23.EventSourcing.Application/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /22 - Event Sourcing/PPPDDDChap23.EventSourcing/PPPDDDChap23.EventSourcing.Application/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/22 - Event Sourcing/PPPDDDChap23.EventSourcing/PPPDDDChap23.EventSourcing.Application/packages.config -------------------------------------------------------------------------------- /22 - Event Sourcing/PPPDDDChap23.EventSourcing/PPPDDDChap23.EventSourcing.ApplicationTests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/22 - Event Sourcing/PPPDDDChap23.EventSourcing/PPPDDDChap23.EventSourcing.ApplicationTests/packages.config -------------------------------------------------------------------------------- /22 - Event Sourcing/PPPDDDChap23.EventSourcing/PPPDDDChap23.EventSourcing.Presentation/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/22 - Event Sourcing/PPPDDDChap23.EventSourcing/PPPDDDChap23.EventSourcing.Presentation/App.config -------------------------------------------------------------------------------- /22 - Event Sourcing/PPPDDDChap23.EventSourcing/PPPDDDChap23.EventSourcing.Presentation/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/22 - Event Sourcing/PPPDDDChap23.EventSourcing/PPPDDDChap23.EventSourcing.Presentation/Program.cs -------------------------------------------------------------------------------- /22 - Event Sourcing/PPPDDDChap23.EventSourcing/PPPDDDChap23.EventSourcing.Presentation/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/22 - Event Sourcing/PPPDDDChap23.EventSourcing/PPPDDDChap23.EventSourcing.Presentation/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /22 - Event Sourcing/PPPDDDChap23.EventSourcing/PPPDDDChap23.EventSourcing.Presentation/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/22 - Event Sourcing/PPPDDDChap23.EventSourcing/PPPDDDChap23.EventSourcing.Presentation/packages.config -------------------------------------------------------------------------------- /22 - Event Sourcing/PPPDDDChap23.EventSourcing/PPPDDDChap23.EventSourcing.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/22 - Event Sourcing/PPPDDDChap23.EventSourcing/PPPDDDChap23.EventSourcing.sln -------------------------------------------------------------------------------- /22 - Event Sourcing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/22 - Event Sourcing/README.md -------------------------------------------------------------------------------- /23 - Architecting Application User Interfaces/PPPDDD.NonDist.UIComp/PPPDDD.NonDist.UIComp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/23 - Architecting Application User Interfaces/PPPDDD.NonDist.UIComp/PPPDDD.NonDist.UIComp.sln -------------------------------------------------------------------------------- /23 - Architecting Application User Interfaces/PPPDDD.NonDist.UIComp/PPPDDD.NonDist.UIComp/App_Start/RouteConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/23 - Architecting Application User Interfaces/PPPDDD.NonDist.UIComp/PPPDDD.NonDist.UIComp/App_Start/RouteConfig.cs -------------------------------------------------------------------------------- /23 - Architecting Application User Interfaces/PPPDDD.NonDist.UIComp/PPPDDD.NonDist.UIComp/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/23 - Architecting Application User Interfaces/PPPDDD.NonDist.UIComp/PPPDDD.NonDist.UIComp/Global.asax -------------------------------------------------------------------------------- /23 - Architecting Application User Interfaces/PPPDDD.NonDist.UIComp/PPPDDD.NonDist.UIComp/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/23 - Architecting Application User Interfaces/PPPDDD.NonDist.UIComp/PPPDDD.NonDist.UIComp/Global.asax.cs -------------------------------------------------------------------------------- /23 - Architecting Application User Interfaces/PPPDDD.NonDist.UIComp/PPPDDD.NonDist.UIComp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/23 - Architecting Application User Interfaces/PPPDDD.NonDist.UIComp/PPPDDD.NonDist.UIComp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /23 - Architecting Application User Interfaces/PPPDDD.NonDist.UIComp/PPPDDD.NonDist.UIComp/Scripts/jquery-1.10.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/23 - Architecting Application User Interfaces/PPPDDD.NonDist.UIComp/PPPDDD.NonDist.UIComp/Scripts/jquery-1.10.2.js -------------------------------------------------------------------------------- /23 - Architecting Application User Interfaces/PPPDDD.NonDist.UIComp/PPPDDD.NonDist.UIComp/Scripts/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/23 - Architecting Application User Interfaces/PPPDDD.NonDist.UIComp/PPPDDD.NonDist.UIComp/Scripts/jquery.validate.js -------------------------------------------------------------------------------- /23 - Architecting Application User Interfaces/PPPDDD.NonDist.UIComp/PPPDDD.NonDist.UIComp/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/23 - Architecting Application User Interfaces/PPPDDD.NonDist.UIComp/PPPDDD.NonDist.UIComp/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /23 - Architecting Application User Interfaces/PPPDDD.NonDist.UIComp/PPPDDD.NonDist.UIComp/Views/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/23 - Architecting Application User Interfaces/PPPDDD.NonDist.UIComp/PPPDDD.NonDist.UIComp/Views/web.config -------------------------------------------------------------------------------- /23 - Architecting Application User Interfaces/PPPDDD.NonDist.UIComp/PPPDDD.NonDist.UIComp/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/23 - Architecting Application User Interfaces/PPPDDD.NonDist.UIComp/PPPDDD.NonDist.UIComp/Web.Debug.config -------------------------------------------------------------------------------- /23 - Architecting Application User Interfaces/PPPDDD.NonDist.UIComp/PPPDDD.NonDist.UIComp/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/23 - Architecting Application User Interfaces/PPPDDD.NonDist.UIComp/PPPDDD.NonDist.UIComp/Web.Release.config -------------------------------------------------------------------------------- /23 - Architecting Application User Interfaces/PPPDDD.NonDist.UIComp/PPPDDD.NonDist.UIComp/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/23 - Architecting Application User Interfaces/PPPDDD.NonDist.UIComp/PPPDDD.NonDist.UIComp/Web.config -------------------------------------------------------------------------------- /23 - Architecting Application User Interfaces/PPPDDD.NonDist.UIComp/PPPDDD.NonDist.UIComp/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/23 - Architecting Application User Interfaces/PPPDDD.NonDist.UIComp/PPPDDD.NonDist.UIComp/packages.config -------------------------------------------------------------------------------- /23 - Architecting Application User Interfaces/PPPSSS.Dist.UIComp/PPPSSS.Dist.UIComp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/23 - Architecting Application User Interfaces/PPPSSS.Dist.UIComp/PPPSSS.Dist.UIComp.sln -------------------------------------------------------------------------------- /23 - Architecting Application User Interfaces/PPPSSS.Dist.UIComp/PPPSSS.Dist.UIComp/App_Start/RouteConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/23 - Architecting Application User Interfaces/PPPSSS.Dist.UIComp/PPPSSS.Dist.UIComp/App_Start/RouteConfig.cs -------------------------------------------------------------------------------- /23 - Architecting Application User Interfaces/PPPSSS.Dist.UIComp/PPPSSS.Dist.UIComp/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/23 - Architecting Application User Interfaces/PPPSSS.Dist.UIComp/PPPSSS.Dist.UIComp/Controllers/HomeController.cs -------------------------------------------------------------------------------- /23 - Architecting Application User Interfaces/PPPSSS.Dist.UIComp/PPPSSS.Dist.UIComp/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/23 - Architecting Application User Interfaces/PPPSSS.Dist.UIComp/PPPSSS.Dist.UIComp/Global.asax -------------------------------------------------------------------------------- /23 - Architecting Application User Interfaces/PPPSSS.Dist.UIComp/PPPSSS.Dist.UIComp/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/23 - Architecting Application User Interfaces/PPPSSS.Dist.UIComp/PPPSSS.Dist.UIComp/Global.asax.cs -------------------------------------------------------------------------------- /23 - Architecting Application User Interfaces/PPPSSS.Dist.UIComp/PPPSSS.Dist.UIComp/PPPSSS.Dist.UIComp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/23 - Architecting Application User Interfaces/PPPSSS.Dist.UIComp/PPPSSS.Dist.UIComp/PPPSSS.Dist.UIComp.csproj -------------------------------------------------------------------------------- /23 - Architecting Application User Interfaces/PPPSSS.Dist.UIComp/PPPSSS.Dist.UIComp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/23 - Architecting Application User Interfaces/PPPSSS.Dist.UIComp/PPPSSS.Dist.UIComp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /23 - Architecting Application User Interfaces/PPPSSS.Dist.UIComp/PPPSSS.Dist.UIComp/Scripts/jquery-1.10.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/23 - Architecting Application User Interfaces/PPPSSS.Dist.UIComp/PPPSSS.Dist.UIComp/Scripts/jquery-1.10.2.js -------------------------------------------------------------------------------- /23 - Architecting Application User Interfaces/PPPSSS.Dist.UIComp/PPPSSS.Dist.UIComp/Scripts/jquery-1.10.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/23 - Architecting Application User Interfaces/PPPSSS.Dist.UIComp/PPPSSS.Dist.UIComp/Scripts/jquery-1.10.2.min.js -------------------------------------------------------------------------------- /23 - Architecting Application User Interfaces/PPPSSS.Dist.UIComp/PPPSSS.Dist.UIComp/Scripts/jquery-1.10.2.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/23 - Architecting Application User Interfaces/PPPSSS.Dist.UIComp/PPPSSS.Dist.UIComp/Scripts/jquery-1.10.2.min.map -------------------------------------------------------------------------------- /23 - Architecting Application User Interfaces/PPPSSS.Dist.UIComp/PPPSSS.Dist.UIComp/Scripts/jquery.validate-vsdoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/23 - Architecting Application User Interfaces/PPPSSS.Dist.UIComp/PPPSSS.Dist.UIComp/Scripts/jquery.validate-vsdoc.js -------------------------------------------------------------------------------- /23 - Architecting Application User Interfaces/PPPSSS.Dist.UIComp/PPPSSS.Dist.UIComp/Scripts/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/23 - Architecting Application User Interfaces/PPPSSS.Dist.UIComp/PPPSSS.Dist.UIComp/Scripts/jquery.validate.js -------------------------------------------------------------------------------- /23 - Architecting Application User Interfaces/PPPSSS.Dist.UIComp/PPPSSS.Dist.UIComp/Scripts/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/23 - Architecting Application User Interfaces/PPPSSS.Dist.UIComp/PPPSSS.Dist.UIComp/Scripts/jquery.validate.min.js -------------------------------------------------------------------------------- /23 - Architecting Application User Interfaces/PPPSSS.Dist.UIComp/PPPSSS.Dist.UIComp/Scripts/pppddd-application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/23 - Architecting Application User Interfaces/PPPSSS.Dist.UIComp/PPPSSS.Dist.UIComp/Scripts/pppddd-application.js -------------------------------------------------------------------------------- /23 - Architecting Application User Interfaces/PPPSSS.Dist.UIComp/PPPSSS.Dist.UIComp/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/23 - Architecting Application User Interfaces/PPPSSS.Dist.UIComp/PPPSSS.Dist.UIComp/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /23 - Architecting Application User Interfaces/PPPSSS.Dist.UIComp/PPPSSS.Dist.UIComp/Views/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/23 - Architecting Application User Interfaces/PPPSSS.Dist.UIComp/PPPSSS.Dist.UIComp/Views/web.config -------------------------------------------------------------------------------- /23 - Architecting Application User Interfaces/PPPSSS.Dist.UIComp/PPPSSS.Dist.UIComp/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/23 - Architecting Application User Interfaces/PPPSSS.Dist.UIComp/PPPSSS.Dist.UIComp/Web.Debug.config -------------------------------------------------------------------------------- /23 - Architecting Application User Interfaces/PPPSSS.Dist.UIComp/PPPSSS.Dist.UIComp/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/23 - Architecting Application User Interfaces/PPPSSS.Dist.UIComp/PPPSSS.Dist.UIComp/Web.Release.config -------------------------------------------------------------------------------- /23 - Architecting Application User Interfaces/PPPSSS.Dist.UIComp/PPPSSS.Dist.UIComp/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/23 - Architecting Application User Interfaces/PPPSSS.Dist.UIComp/PPPSSS.Dist.UIComp/Web.config -------------------------------------------------------------------------------- /23 - Architecting Application User Interfaces/PPPSSS.Dist.UIComp/PPPSSS.Dist.UIComp/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/23 - Architecting Application User Interfaces/PPPSSS.Dist.UIComp/PPPSSS.Dist.UIComp/packages.config -------------------------------------------------------------------------------- /23 - Architecting Application User Interfaces/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/23 - Architecting Application User Interfaces/README.md -------------------------------------------------------------------------------- /24 - CQRS An Architecture of A Bounded Context/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/24 - CQRS An Architecture of A Bounded Context/README.md -------------------------------------------------------------------------------- /25 - Commands Application Service Patterns for processing Business Use Cases/.nuget/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/25 - Commands Application Service Patterns for processing Business Use Cases/.nuget/NuGet.Config -------------------------------------------------------------------------------- /25 - Commands Application Service Patterns for processing Business Use Cases/.nuget/NuGet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/25 - Commands Application Service Patterns for processing Business Use Cases/.nuget/NuGet.exe -------------------------------------------------------------------------------- /25 - Commands Application Service Patterns for processing Business Use Cases/.nuget/NuGet.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/25 - Commands Application Service Patterns for processing Business Use Cases/.nuget/NuGet.targets -------------------------------------------------------------------------------- /25 - Commands Application Service Patterns for processing Business Use Cases/DDDPPP.Chap20.CommandHandler.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/25 - Commands Application Service Patterns for processing Business Use Cases/DDDPPP.Chap20.CommandHandler.sln -------------------------------------------------------------------------------- /26 - Queries Domain Reporting/PPPDDD.Reporting.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/26 - Queries Domain Reporting/PPPDDD.Reporting.sln -------------------------------------------------------------------------------- /26 - Queries Domain Reporting/PPPDDD.Reporting/App_Start/RouteConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/26 - Queries Domain Reporting/PPPDDD.Reporting/App_Start/RouteConfig.cs -------------------------------------------------------------------------------- /26 - Queries Domain Reporting/PPPDDD.Reporting/Controllers/DealershipPerformanceReportController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/26 - Queries Domain Reporting/PPPDDD.Reporting/Controllers/DealershipPerformanceReportController.cs -------------------------------------------------------------------------------- /26 - Queries Domain Reporting/PPPDDD.Reporting/Controllers/DealershipReportUsingMediatorController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/26 - Queries Domain Reporting/PPPDDD.Reporting/Controllers/DealershipReportUsingMediatorController.cs -------------------------------------------------------------------------------- /26 - Queries Domain Reporting/PPPDDD.Reporting/Controllers/DenormalizedLoyaltyReportController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/26 - Queries Domain Reporting/PPPDDD.Reporting/Controllers/DenormalizedLoyaltyReportController.cs -------------------------------------------------------------------------------- /26 - Queries Domain Reporting/PPPDDD.Reporting/Controllers/HealthcareEventProjectionReportController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/26 - Queries Domain Reporting/PPPDDD.Reporting/Controllers/HealthcareEventProjectionReportController.cs -------------------------------------------------------------------------------- /26 - Queries Domain Reporting/PPPDDD.Reporting/Controllers/LoyaltyReportQueryingDatastoreController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/26 - Queries Domain Reporting/PPPDDD.Reporting/Controllers/LoyaltyReportQueryingDatastoreController.cs -------------------------------------------------------------------------------- /26 - Queries Domain Reporting/PPPDDD.Reporting/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/26 - Queries Domain Reporting/PPPDDD.Reporting/Global.asax -------------------------------------------------------------------------------- /26 - Queries Domain Reporting/PPPDDD.Reporting/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/26 - Queries Domain Reporting/PPPDDD.Reporting/Global.asax.cs -------------------------------------------------------------------------------- /26 - Queries Domain Reporting/PPPDDD.Reporting/PPPDDD.Reporting.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/26 - Queries Domain Reporting/PPPDDD.Reporting/PPPDDD.Reporting.csproj -------------------------------------------------------------------------------- /26 - Queries Domain Reporting/PPPDDD.Reporting/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/26 - Queries Domain Reporting/PPPDDD.Reporting/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /26 - Queries Domain Reporting/PPPDDD.Reporting/Views/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/26 - Queries Domain Reporting/PPPDDD.Reporting/Views/web.config -------------------------------------------------------------------------------- /26 - Queries Domain Reporting/PPPDDD.Reporting/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/26 - Queries Domain Reporting/PPPDDD.Reporting/Web.Debug.config -------------------------------------------------------------------------------- /26 - Queries Domain Reporting/PPPDDD.Reporting/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/26 - Queries Domain Reporting/PPPDDD.Reporting/Web.Release.config -------------------------------------------------------------------------------- /26 - Queries Domain Reporting/PPPDDD.Reporting/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/26 - Queries Domain Reporting/PPPDDD.Reporting/Web.config -------------------------------------------------------------------------------- /26 - Queries Domain Reporting/PPPDDD.Reporting/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/26 - Queries Domain Reporting/PPPDDD.Reporting/packages.config -------------------------------------------------------------------------------- /26 - Queries Domain Reporting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/26 - Queries Domain Reporting/README.md -------------------------------------------------------------------------------- /26 - Queries Domain Reporting/SportsStoreDatabase/LoyaltyAccounts.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/26 - Queries Domain Reporting/SportsStoreDatabase/LoyaltyAccounts.sql -------------------------------------------------------------------------------- /26 - Queries Domain Reporting/SportsStoreDatabase/LoyaltySettings.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/26 - Queries Domain Reporting/SportsStoreDatabase/LoyaltySettings.sql -------------------------------------------------------------------------------- /26 - Queries Domain Reporting/SportsStoreDatabase/Orders.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/26 - Queries Domain Reporting/SportsStoreDatabase/Orders.sql -------------------------------------------------------------------------------- /26 - Queries Domain Reporting/SportsStoreDatabase/TestData.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/26 - Queries Domain Reporting/SportsStoreDatabase/TestData.sql -------------------------------------------------------------------------------- /26 - Queries Domain Reporting/SportsStoreDatabase/Users.sql: -------------------------------------------------------------------------------- 1 | CREATE TABLE [dbo].[Users] 2 | ( 3 | [Id] INT NOT NULL PRIMARY KEY 4 | ) 5 | -------------------------------------------------------------------------------- /26 - Queries Domain Reporting/SportsStoreDatabase/sportsstoredatabase.sqlproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/26 - Queries Domain Reporting/SportsStoreDatabase/sportsstoredatabase.sqlproj -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/README.md -------------------------------------------------------------------------------- /eBidder Case Study/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbandit/PPPDDD/HEAD/eBidder Case Study/README.md --------------------------------------------------------------------------------