IAuthenticationService.cs 500 B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace GreenTree.Nachtragsmanagement.Services.User
  7. {
  8. public interface IAuthenticationService
  9. {
  10. /// <summary>
  11. /// Evaluates the current user of the current session
  12. /// </summary>
  13. Core.Domain.User.User Current();
  14. /// <summary>
  15. /// Authenticates the current user
  16. /// </summary>
  17. void Authenticate();
  18. }
  19. }