using InSituLaboratory.Entities; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace InSituLaboratory.IService { public interface IRoleService : IBaseService { IEnumerable GetRoles(string key); bool CheckRoleName(string roleName, int roleId); } }