修复用户分配角色的BUG

This commit is contained in:
yubaolee
2016-04-13 14:56:34 +08:00
parent 0786ea0420
commit 587726951b
11 changed files with 443 additions and 336 deletions

View File

@@ -20,6 +20,8 @@ namespace OpenAuth.Domain.Interface
public interface IRelevanceRepository : IRepository<Relevance>
{
void DeleteBy(string key, params int[] firstIds);
void DeleteBy(string key, ILookup<int, int> idMaps);
void AddRelevance( string key, ILookup<int, int> idMaps);
}
}