Store Filter between pages

This commit is contained in:
Andre Beging
2025-04-02 07:47:33 +02:00
parent 6d6d79f55a
commit b7ba95b716
10 changed files with 103 additions and 11 deletions

View File

@@ -3,6 +3,7 @@ using FoodsharingSiegen.Contracts.Entity;
using FoodsharingSiegen.Contracts.Model;
using FoodsharingSiegen.Server.Auth;
using FoodsharingSiegen.Server.Data.Service;
using FoodsharingSiegen.Server.Service;
using Microsoft.AspNetCore.Components;
using Microsoft.Extensions.Options;
@@ -31,6 +32,12 @@ namespace FoodsharingSiegen.Server.BaseClasses
[Inject]
protected AuthService AuthService { get; set; } = null!;
/// <summary>
/// Gets or sets the service that interacts with the browser's local storage.
/// </summary>
[Inject]
protected LocalStorageService LocalStorageService { get; set; } = null!;
/// <summary>
/// Gets or sets the modal service for handling modals within the application
/// </summary>