Van normális bejelenkezési ablak

This commit is contained in:
2025-03-12 10:38:30 +01:00
parent 29e6efc9e0
commit c9ffad0d91
8 changed files with 117 additions and 5 deletions
@@ -0,0 +1,6 @@
namespace WorkFlowCheck.Web.Services.Interfaces
{
public interface IUserService
{
}
}
@@ -0,0 +1,12 @@
using WorkFlowCheck.Web.Services.Interfaces;
namespace WorkFlowCheck.Web.Services
{
public class UserService : BaseService, IUserService
{
public UserService(HttpClient httpClient, IConfiguration configuration) : base(httpClient, configuration)
{
}
}
}