123456789101112131415161718192021 |
- 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<bool> LoginAsync(loginDto userInfo);
- Task LogoutAsync();
- Task<List<string>> GetRoles(string ResourceId);
- Task<bool> ChangePassword(changePasswordDto dto);
- Task CanVisitResource();
- }
- }
|