using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using wispro.sp.share.webViewObject; namespace wispro.sp.web.Services { public interface IAuthService { Task LoginAsync(loginDto userInfo); Task LogoutAsync(); Task> GetRoles(string ResourceId); Task ChangePassword(changePasswordDto dto); Task CanVisitResource(string resId); } }