using System.Collections.Generic; using System.Security.Claims; namespace Infrastructure.Web { public interface IUserService { List GetOrgans(string userName); List GetRoles(string userName, string organId); } }