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);
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);