| 123456789101112131415161718192021 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace GreenTree.Nachtragsmanagement.Services.User
- {
- public interface IAuthenticationService
- {
- /// <summary>
- /// Evaluates the current user of the current session
- /// </summary>
- Core.Domain.User.User Current();
- /// <summary>
- /// Authenticates the current user
- /// </summary>
- void Authenticate();
- }
- }
|