OpenAuth.Net/OpenAuth.Domain/Interface/IUserModuleRepository.cs
2015-11-26 23:09:25 +08:00

15 lines
368 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OpenAuth.Domain.Interface
{
public interface IUserModuleRepository : IRepository<UserModule>
{
void DeleteByUser(params int[] userIds);
void AddUserModule(int userId, params int[] moduleIds);
}
}