Example #1
0
 public UpdatableLog(UpdatableOperation operation, Entity target, Entity resource, string propertyName, object propertyValue)
 {
     Operation     = operation;
     Target        = target;
     Resource      = resource;
     PropertyName  = propertyName;
     PropertyValue = propertyValue;
 }
Example #2
0
 private void AddToLog(UpdatableOperation operation, Entity target, Entity resource, string propertyName, object propertyValue)
 {
     Log.Add(new UpdatableLog(operation, target, resource, propertyName, propertyValue));
 }