mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-04-05 08:37:28 +08:00
26 lines
863 B
C#
26 lines
863 B
C#
// ***********************************************************************
|
|
// 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);
|
|
}
|
|
}
|