Documentation Coverage Report
Current view: top level - Cqrs/Events - DtoAggregateEventType.cs Hit Total Coverage
Version: 2.2 Artefacts: 1 1 100.0 %
Date: 2018-08-07 15:04:50

          Line data    Source code
       1             : #region Copyright
       2             : // // -----------------------------------------------------------------------
       3             : // // <copyright company="Chinchilla Software Limited">
       4             : // //   Copyright Chinchilla Software Limited. All rights reserved.
       5             : // // </copyright>
       6             : // // -----------------------------------------------------------------------
       7             : #endregion
       8             : 
       9             : namespace Cqrs.Events
      10             : {
      11             :         /// <summary>
      12             :         /// The type of CRUD operation.
      13             :         /// </summary>
      14             :         public enum DtoAggregateEventType
      15           1 :         {
      16             :                 /// <summary>
      17             :                 /// An unknown CRUD operations.
      18             :                 /// </summary>
      19             :                 Unknown = 0,
      20             : 
      21             :                 /// <summary>
      22             :                 /// The Create CRUD operations.
      23             :                 /// </summary>
      24             :                 Created = 1,
      25             : 
      26             :                 /// <summary>
      27             :                 /// The Update CRUD operations.
      28             :                 /// </summary>
      29             :                 Updated = 3,
      30             : 
      31             :                 /// <summary>
      32             :                 /// The Delete CRUD operations.
      33             :                 /// </summary>
      34             :                 Deleted = 4
      35             :         }
      36             : }

Generated by: LCOV version 1.12