last ...
This commit is contained in:
@@ -24,11 +24,6 @@ namespace xIdentityService.Interfaces
|
|||||||
string Provider { get; }
|
string Provider { get; }
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
//
|
|
||||||
#region Identifier ...
|
|
||||||
Task<int> LastIndex(TKey providedForId);
|
|
||||||
#endregion
|
|
||||||
|
|
||||||
//
|
//
|
||||||
#region Referenced Actions ...
|
#region Referenced Actions ...
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -49,6 +44,13 @@ namespace xIdentityService.Interfaces
|
|||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
Task<IEnumerable<TModel>> GetAllReferences(TKey providedForId);
|
Task<IEnumerable<TModel>> GetAllReferences(TKey providedForId);
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Count References ...
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="providedForId"></param>
|
||||||
|
/// <returns></returns>
|
||||||
|
Task<int> CountReferences(TKey providedForId);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Retrieve References of Specific Provided ID as Query ...
|
/// Retrieve References of Specific Provided ID as Query ...
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@@ -64,14 +66,12 @@ namespace xIdentityService.Interfaces
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="model"></param>
|
/// <param name="model"></param>
|
||||||
/// <param name="providedForId"></param>
|
/// <param name="providedForId"></param>
|
||||||
/// <param name="forIndex"></param>
|
|
||||||
/// <param name="connectionId"></param>
|
/// <param name="connectionId"></param>
|
||||||
/// <param name="userInfo"></param>
|
/// <param name="userInfo"></param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
Task<bool> AddReference(
|
Task<bool> AddReference(
|
||||||
TModel model,
|
TModel model,
|
||||||
TKey providedForId,
|
TKey providedForId,
|
||||||
int forIndex = 0,
|
|
||||||
string connectionId = null,
|
string connectionId = null,
|
||||||
XUserClaimsInfoDto userInfo = null
|
XUserClaimsInfoDto userInfo = null
|
||||||
);
|
);
|
||||||
@@ -96,14 +96,12 @@ namespace xIdentityService.Interfaces
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="model"></param>
|
/// <param name="model"></param>
|
||||||
/// <param name="providedForId"></param>
|
/// <param name="providedForId"></param>
|
||||||
/// <param name="forIndex">if null, removes all</param>
|
|
||||||
/// <param name="connectionId"></param>
|
/// <param name="connectionId"></param>
|
||||||
/// <param name="userInfo"></param>
|
/// <param name="userInfo"></param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
Task<bool> RemoveReference(
|
Task<bool> RemoveReference(
|
||||||
TModel model,
|
TModel model,
|
||||||
TKey providedForId,
|
TKey providedForId,
|
||||||
int? forIndex = null,
|
|
||||||
string connectionId = null,
|
string connectionId = null,
|
||||||
XUserClaimsInfoDto userInfo = null
|
XUserClaimsInfoDto userInfo = null
|
||||||
);
|
);
|
||||||
|
|||||||
Reference in New Issue
Block a user