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