mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-09-20 18:47:55 +08:00
完成登录处理
This commit is contained in:
25
OpenAuth.Domain/Interface/IRelevanceRepository.cs
Normal file
25
OpenAuth.Domain/Interface/IRelevanceRepository.cs
Normal file
@@ -0,0 +1,25 @@
|
||||
// ***********************************************************************
|
||||
// Assembly : OpenAuth.Domain
|
||||
// Author : Yubao Li
|
||||
// Created : 11-30-2015
|
||||
//
|
||||
// Last Modified By : Yubao Li
|
||||
// Last Modified On : 11-30-2015
|
||||
// ***********************************************************************
|
||||
// <copyright file="IRelevanceRepository.cs" company="">
|
||||
// Copyright (c) . All rights reserved.
|
||||
// </copyright>
|
||||
// <summary>多对多关系统一处理</summary>
|
||||
// ***********************************************************************
|
||||
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
|
||||
namespace OpenAuth.Domain.Interface
|
||||
{
|
||||
public interface IRelevanceRepository : IRepository<Relevance>
|
||||
{
|
||||
void DeleteBy(string key, params int[] firstIds);
|
||||
void AddRelevance( string key, ILookup<int, int> idMaps);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user