From d8d63ac89aca41c0c468732f25d19fd0aaa0b51c Mon Sep 17 00:00:00 2001 From: inga-lovinde <52715130+inga-lovinde@users.noreply.github.com> Date: Fri, 10 Sep 2010 17:11:36 +0000 Subject: [PATCH] SqlObject.GetUpdateChange(data) implemented --- Common/SqlObject.cs | 8 ++++++++ 1 file changed, 8 insertions(+) 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 + ); + } + } }