Пример #1
0
 private void InsertSinger(TSCSingers local, SingingClub scRemote)
 {
     _sb.AppendLine(string.Format("Insert: {0}", local.SingerKey));
     scRemote.GeneralStore(TableName.TSCSingers, TableAction.INSERT, local.GetDataXml());
 }
Пример #2
0
 private void DeleteSinger(TSCSingers remote, SingingClub scRemote)
 {
     _sb.AppendLine(string.Format("Delete: {0}", remote.SingerKey));
     scRemote.GeneralStore(TableName.TSCSingers, TableAction.DELETE, remote.GetDataXml());
 }
Пример #3
0
 private void UpdateSinger(TSCSingers local, TSCSingers remote, SingingClub scRemote)
 {
     _sb.AppendLine(string.Format("Update: {0}", local.SingerKey));
     scRemote.GeneralStore(TableName.TSCSingers, TableAction.UPDATE, local.GetDataXml());
 }