Update for Better Supports ...
This commit is contained in:
@@ -64,7 +64,7 @@ namespace xFileService.Interfaces
|
||||
/// <param name="userInfo"></param>
|
||||
/// <returns></returns>
|
||||
Task TagAttach(
|
||||
string tag,
|
||||
string tag,
|
||||
Guid id,
|
||||
XUserClaimsInfoDto userInfo = null
|
||||
);
|
||||
@@ -77,7 +77,7 @@ namespace xFileService.Interfaces
|
||||
/// <param name="userInfo"></param>
|
||||
/// <returns></returns>
|
||||
Task TagDetach(
|
||||
string tag,
|
||||
string tag,
|
||||
Guid id,
|
||||
XUserClaimsInfoDto userInfo = null
|
||||
);
|
||||
@@ -90,7 +90,7 @@ namespace xFileService.Interfaces
|
||||
/// <param name="userInfo"></param>
|
||||
/// <returns></returns>
|
||||
Task TagsAttach(
|
||||
IEnumerable<string> tags,
|
||||
IEnumerable<string> tags,
|
||||
Guid id,
|
||||
XUserClaimsInfoDto userInfo = null
|
||||
);
|
||||
@@ -103,11 +103,11 @@ namespace xFileService.Interfaces
|
||||
/// <param name="userInfo"></param>
|
||||
/// <returns></returns>
|
||||
Task TagsDetach(
|
||||
IEnumerable<string> tags,
|
||||
IEnumerable<string> tags,
|
||||
Guid id,
|
||||
XUserClaimsInfoDto userInfo = null
|
||||
);
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// Detach all Attached Tags for Specified File ...
|
||||
/// </summary>
|
||||
@@ -193,20 +193,23 @@ namespace xFileService.Interfaces
|
||||
/// Get Reference Identifier for Specified Provider and Specified File ...
|
||||
/// </summary>
|
||||
/// <param name="providedFor"></param>
|
||||
/// <param name="id"></param>
|
||||
/// <param name="forProvidedId"></param>
|
||||
/// <returns></returns>
|
||||
string GetIdentifier(
|
||||
string providedFor,
|
||||
Guid id
|
||||
string GetIdentifier<TKey>(
|
||||
string providedFor,
|
||||
TKey forProvidedId
|
||||
);
|
||||
|
||||
/// <summary>
|
||||
/// Check Specified File has Refernce to Provider ...
|
||||
/// </summary>
|
||||
/// <param name="providedFor"></param>
|
||||
/// <param name="forProvidedId"></param>
|
||||
/// <param name="id"></param>
|
||||
/// <returns></returns>
|
||||
Task<bool> IsProvidedFor(
|
||||
string providedFor,
|
||||
Task<bool> IsProvidedFor<TKey>(
|
||||
string providedFor,
|
||||
TKey forProvidedId,
|
||||
Guid id
|
||||
);
|
||||
|
||||
@@ -214,11 +217,13 @@ namespace xFileService.Interfaces
|
||||
/// Add Specified Reference to Specified File ...
|
||||
/// </summary>
|
||||
/// <param name="providedFor"></param>
|
||||
/// <param name="forProvidedId"></param>
|
||||
/// <param name="id"></param>
|
||||
/// <param name="userInfo"></param>
|
||||
/// <returns></returns>
|
||||
Task AddReference(
|
||||
string providedFor,
|
||||
Task AddReference<TKey>(
|
||||
string providedFor,
|
||||
TKey forProvidedId,
|
||||
Guid id,
|
||||
XUserClaimsInfoDto userInfo = null
|
||||
);
|
||||
@@ -227,11 +232,13 @@ namespace xFileService.Interfaces
|
||||
/// Remove Specified Reference from Specified File ...
|
||||
/// </summary>
|
||||
/// <param name="providedFor"></param>
|
||||
/// <param name="forProvidedId"></param>
|
||||
/// <param name="id"></param>
|
||||
/// <param name="userInfo"></param>
|
||||
/// <returns></returns>
|
||||
Task RemoveReference(
|
||||
string providedFor,
|
||||
Task RemoveReference<TKey>(
|
||||
string providedFor,
|
||||
TKey forProvidedId,
|
||||
Guid id,
|
||||
XUserClaimsInfoDto userInfo = null
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user