// ***********************************************************************
// Assembly : OpenAuth.Domain
// Author : Yubao Li
// Created : 11-30-2015
//
// Last Modified By : Yubao Li
// Last Modified On : 11-30-2015
// ***********************************************************************
//
// Copyright (c) . All rights reserved.
//
// 多对多关系统一处理
// ***********************************************************************
using System.Collections.Generic;
using System.Linq;
namespace OpenAuth.Domain.Interface
{
public interface IRelevanceRepository : IRepository
{
void DeleteBy(string key, params int[] firstIds);
void AddRelevance( string key, ILookup idMaps);
}
}