20 lines
434 B
C#
20 lines
434 B
C#
namespace LaaProduction.Personalization.Interfaces
|
|
{
|
|
using LaaProduction.SharedModels;
|
|
|
|
using System.Security.Principal;
|
|
|
|
public interface IAccountManager
|
|
{
|
|
IPrincipal GetClaimsPrincipal(string token);
|
|
|
|
string Login(ADLoginModel model);
|
|
|
|
string Login(UserLoginModel model);
|
|
|
|
void ResetPassword(short employeeId);
|
|
|
|
void SetPassword(short employeeId, string password);
|
|
}
|
|
}
|