Exemplo n.º 1
0
 public static void SendUpdate <DataType, KeyType>
     (this ISyncOprations Client,
     PartOfTable <DataType, KeyType> Table)
     where KeyType : IComparable <KeyType>
 => ((IAsyncOprations)Client).SendUpdate(Table).Wait();
Exemplo n.º 2
0
 public static bool GetUpdate <DataType, KeyType>(
     this ISyncOprations Client,
     PartOfTable <DataType, KeyType> RelationTable,
     Action <DataType> MakeingUpdate = null)
     where KeyType : IComparable <KeyType>
 => Client.I_GetUpdate(RelationTable, MakeingUpdate, true).GetAwaiter().GetResult();
Exemplo n.º 3
0
 public static bool GetUpdate <DataType, KeyType>(
     this ISyncOprations Client,
     Table <DataType, KeyType> Table,
     Action <DataType> MakeingUpdate = null)
     where KeyType : IComparable <KeyType>
 => Client.I_GetUpdate(Table, MakeingUpdate, null, false).GetAwaiter().GetResult();