Retail_manager/RMWPFInterfaceLibrary/Api/IAPIHelper.cs
s459315 5c2b914884 Fix Log Off Bug
fixes the bug where header was not being cleared on log off
2022-07-30 14:21:25 +02:00

14 lines
365 B
C#

using RMWPFUserInterface.Models;
using System.Net.Http;
using System.Threading.Tasks;
namespace RMWPFInterfaceLibrary.Api
{
public interface IAPIHelper
{
HttpClient ApiClient { get; }
void LogOffUser();
Task<AuthenticatedUser> Authenticate(string username, string password);
Task GetLogedInUserInfo(string token);
}
}