using System;
using System.Web;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using GreenTree.Nachtragsmanagement.Services.Configuration;
using GreenTree.Nachtragsmanagement.Core.Authentication;
namespace GreenTree.Nachtragsmanagement.Services.User
{
public class AuthenticationService : IAuthenticationService
{
#region Fields
private readonly IConfigurationService _configurationService;
private readonly IUserService _userService;
private readonly IUserHelper _userHelper;
#endregion
#region Ctor
///
/// Initializes a new instance of the UserHelper class
///
public AuthenticationService(
IConfigurationService configurationService,
IUserService userService,
IUserHelper userHelper)
{
_configurationService = configurationService;
_userService = userService;
_userHelper = userHelper;
}
public void Authenticate()
{
throw new NotImplementedException();
}
#endregion
///
/// Evaluates the current user of the current session
///
public Core.Domain.User.User Current()
{
throw new NotImplementedException();
}
}
}