Files
laatzen/LaaProductionWeb/LaaProduction.Personalization/Interfaces/IAccountManager.cs
T
2023-08-08 11:11:16 +02:00

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);
}
}