Exemplo n.º 1
0
 public EditReference(MapObject obj, Action<Document, MapObject> action)
 {
     ID = obj.ID;
     Before = obj.Clone();
     After = null;
     Action = action;
 }
Exemplo n.º 2
0
 public EditReference(MapObject obj, IEditOperation editOperation)
 {
     ID = obj.ID;
     Before = obj.Clone();
     EditOperation = editOperation;
 }
Exemplo n.º 3
0
 public EditReference(long id, MapObject before, MapObject after)
 {
     ID = id;
     Before = before.Clone();
     After = after.Clone();
     Action = null;
 }