Exemplo n.º 1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ChangeSetEntry"/> class
 /// </summary>
 /// <param name="entity">The entity being operated on</param>
 /// <param name="id">The client ID for the entity, used to correlate server results
 /// with their client entity instances.</param>
 /// <param name="operationType">The operation to be performed</param>
 public ChangeSetEntry(Entity entity, int id, EntityOperationType operationType)
 {
     this._entity = entity;
     this._id = id;
     this._operationType = operationType;
 }