Beispiel #1
0
 /// <summary>
 /// Creates a new serialized source system entity associated with the specified
 /// source system entity identity (always) and operation (if it exists).
 /// </summary>
 /// <param name="entity">The entity to create.</param>
 public void CreateIdentityOperationSourceSystemEntity(
     IIdentityOperationSourceSystemEntity entity)
 {
     this.Invoke(
         () => this.repository.CreateIdentityOperationSourceSystemEntity(entity),
         nameof(this.repository.CreateIdentityOperationSourceSystemEntity));
 }
Beispiel #2
0
 /// <summary>
 /// Creates a new serialized source system entity associated with the specified
 /// source system entity identity (always) and operation (if it exists).
 /// </summary>
 /// <param name="entity">The entity to create.</param>
 public void CreateIdentityOperationSourceSystemEntity(
     IIdentityOperationSourceSystemEntity entity)
 {
     this.context.CreateIdentityOperationSourceSystemEntity(
         entity.Operation.Id,
         entity.Operation.TimeStamp,
         entity.Identity.EntityTypeId,
         entity.Identity.SourceSystemId,
         entity.Identity.SourceSystemEntityId,
         entity.Entity.DataHash,
         entity.Entity.Data,
         entity.Entity.Label);
 }