You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
458 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Txgy.EWS.Client.Entity;
namespace Txgy.EWS.Client.IBLL
{
public interface IRoleBLL
{
Task<List<RoleEntity>> GetAll();
Task<List<RoleEntity>> GetAllByUserId(int userId);
Task<List<UserEntity>> GetAllUsers(int roleId);
Task Save(RoleEntity role, List<int> userIds, List<int> menuIds);
}
}