PageRenderTime 38ms CodeModel.GetById 14ms RepoModel.GetById 1ms app.codeStats 0ms

/Source/Bifrost/Domain/IOriginator.cs

#
C# | 41 lines | 10 code | 1 blank | 30 comment | 0 complexity | 94219824d1b8f2f2c148bf1a6860b2cf MD5 | raw file
Possible License(s): CC-BY-SA-3.0
  1. #region License
  2. //
  3. // Copyright (c) 2008-2012, DoLittle Studios and Komplett ASA
  4. //
  5. // Licensed under the Microsoft Permissive License (Ms-PL), Version 1.1 (the "License")
  6. // With one exception :
  7. // Commercial libraries that is based partly or fully on Bifrost and is sold commercially,
  8. // must obtain a commercial license.
  9. //
  10. // You may not use this file except in compliance with the License.
  11. // You may obtain a copy of the license at
  12. //
  13. // http://bifrost.codeplex.com/license
  14. //
  15. // Unless required by applicable law or agreed to in writing, software
  16. // distributed under the License is distributed on an "AS IS" BASIS,
  17. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  18. // See the License for the specific language governing permissions and
  19. // limitations under the License.
  20. //
  21. #endregion
  22. namespace Bifrost.Domain
  23. {
  24. /// <summary>
  25. /// Defines an origin, typically for aggregated roots when needing to create mementos and set them
  26. /// </summary>
  27. public interface IOriginator
  28. {
  29. /// <summary>
  30. /// Create memento
  31. /// </summary>
  32. /// <returns>The actual memento</returns>
  33. IMemento CreateMemento();
  34. /// <summary>
  35. /// Set mememoty
  36. /// </summary>
  37. /// <param name="memento">The actual memento to set</param>
  38. void SetMemento(IMemento memento);
  39. }
  40. }