using Newtonsoft.Json; using System.Net.Http.Json; using System.Text; using TIAMWebApp.Shared.Application.Interfaces; using TIAMWebApp.Shared.Application.Models; using TIAMWebApp.Shared.Application.Models.ClientSide; using TIAMWebApp.Shared.Application.Models.PageModels; using TIAMWebApp.Shared.Application.Utility; using AyCode.Interfaces.StorageHandlers; using TIAM.Models.Dtos.Users; using AyCode.Services.Loggers; using System.Net.Http; using AyCode.Core.Extensions; using System.Text.Json; using TIAM.Models; using AyCode.Blazor.Components.Services; using TIAMWebApp.Shared.Application.Services; namespace TIAMWebApp.Client.Services { public class UserDataServiceWeb(HttpClient http, ISessionService sessionService, ISecureStorageHandler secureStorageHandler, IServiceProviderDataService serviceProviderDataService, IEnumerable logWriters) : UserDataServiceClientBase(http, sessionService, secureStorageHandler, serviceProviderDataService, logWriters); }