| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- 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
- /// <summary>
- /// Initializes a new instance of the UserHelper class
- /// </summary>
- public AuthenticationService(
- IConfigurationService configurationService,
- IUserService userService,
- IUserHelper userHelper)
- {
- _configurationService = configurationService;
- _userService = userService;
- _userHelper = userHelper;
- }
- public void Authenticate()
- {
- throw new NotImplementedException();
- }
- #endregion
- /// <summary>
- /// Evaluates the current user of the current session
- /// </summary>
- public Core.Domain.User.User Current()
- {
- throw new NotImplementedException();
- }
- }
- }
|