SQLLite vol 1.

This commit is contained in:
2025-02-05 13:47:11 +01:00
parent aaa5862c80
commit 4570c071a7
15 changed files with 190 additions and 28 deletions
@@ -16,6 +16,8 @@ namespace WorkFlowCheck.MAUI.Services
public class UserService : IUserService
{
private readonly HttpClient _httpClient;
public UserDTO? CurrentUser { get; private set; }
public UserService(HttpClient httpClient, IConfiguration configuration)
{
_httpClient = httpClient;
@@ -91,5 +93,9 @@ namespace WorkFlowCheck.MAUI.Services
};
}
}
public void SetUser(UserDTO user)
{
CurrentUser = user;
}
}
}