using System; using System.Collections.Generic; using System.Linq; using System.Text; using Microsoft.SharePoint; using Taloyhtio.GeneralSSO.Server.CodeFiles.Entities; namespace Taloyhtio.GeneralSSO.Server.CodeFiles.Services { interface IRolesProvider { UserRoles? GetRoles(SPSite site, string loginName); } }