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