diff --git a/Common/SqlObject.cs b/Common/SqlObject.cs index 6db7fde..a979619 100644 --- a/Common/SqlObject.cs +++ b/Common/SqlObject.cs @@ -153,6 +153,14 @@ namespace FLocal.Common { } } + internal actions.UpdateChange GetUpdateChange(Dictionary data) { + return new actions.UpdateChange( + this.table, + data, + this.id + ); + } + } }