PageRenderTime 39ms CodeModel.GetById 15ms RepoModel.GetById 0ms app.codeStats 0ms

/V4/Quickstarts/EventAggregation/Desktop/ModuleA.Tests/Mocks/MockFundAddedEvent.cs

#
C# | 33 lines | 14 code | 3 blank | 16 comment | 0 complexity | e8ed2ca3d1d29590ea355049a0981dbf MD5 | raw file
  1. //===================================================================================
  2. // Microsoft patterns & practices
  3. // Composite Application Guidance for Windows Presentation Foundation and Silverlight
  4. //===================================================================================
  5. // Copyright (c) Microsoft Corporation. All rights reserved.
  6. // THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY
  7. // OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT
  8. // LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
  9. // FITNESS FOR A PARTICULAR PURPOSE.
  10. //===================================================================================
  11. // The example companies, organizations, products, domain names,
  12. // e-mail addresses, logos, people, places, and events depicted
  13. // herein are fictitious. No association with any real company,
  14. // organization, product, domain name, email address, logo, person,
  15. // places, or events is intended or should be inferred.
  16. //===================================================================================
  17. using EventAggregation.Infrastructure;
  18. namespace ModuleA.Tests.Mocks
  19. {
  20. class MockFundAddedEvent : FundAddedEvent
  21. {
  22. public bool PublishCalled;
  23. public FundOrder PublishArgumentPayload;
  24. public override void Publish(FundOrder payload)
  25. {
  26. PublishCalled = true;
  27. PublishArgumentPayload = payload;
  28. }
  29. }
  30. }