This commit is contained in:
2025-12-19 04:02:01 +03:30
parent 623d497b96
commit 1ea040770e
2 changed files with 163 additions and 164 deletions
+1 -5
View File
@@ -26,13 +26,11 @@ namespace xTagService.Interfaces
/// </summary>
/// <param name="tag"></param>
/// <param name="providedForId"></param>
/// <param name="forIndex"></param>
/// <param name="connectionId"></param>
/// <returns></returns>
Task<bool> AddReference(
string tag,
TKey providedForId,
int forIndex = 0,
string connectionId = null
);
@@ -47,20 +45,18 @@ namespace xTagService.Interfaces
string tag,
XReference<TKey> reference,
string connectionId = null
);
);
/// <summary>
/// Remove Reference a Tag for Specific Provided ID ...
/// </summary>
/// <param name="tag"></param>
/// <param name="providedForId"></param>
/// <param name="forIndex">if null, removes all</param>
/// <param name="connectionId"></param>
/// <returns></returns>
Task<bool> RemoveReference(
string tag,
TKey providedForId,
int? forIndex = null,
string connectionId = null
);