Suche auf den Prospectseiten implementieren
This commit is contained in:
@@ -1,7 +1,6 @@
|
||||
using FoodsharingSiegen.Contracts.Entity;
|
||||
using FoodsharingSiegen.Contracts.Model;
|
||||
using FoodsharingSiegen.Server.Data.Service;
|
||||
using FoodsharingSiegen.Server.Dialogs;
|
||||
using Microsoft.AspNetCore.Components;
|
||||
|
||||
namespace FoodsharingSiegen.Server.Pages
|
||||
@@ -22,6 +21,11 @@ namespace FoodsharingSiegen.Server.Pages
|
||||
|
||||
#region Private Properties
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the value of the filter text (ab)
|
||||
/// </summary>
|
||||
private string? FilterText { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the value of the prospect list (ab)
|
||||
/// </summary>
|
||||
@@ -45,6 +49,19 @@ namespace FoodsharingSiegen.Server.Pages
|
||||
|
||||
#endregion
|
||||
|
||||
#region Private Method FilterText_Changed
|
||||
|
||||
/// <summary>
|
||||
/// Filters the text changed using the specified filter text (a. beging, 08.02.2023)
|
||||
/// </summary>
|
||||
/// <param name="filterText">The filter text</param>
|
||||
private void FilterText_Changed(string filterText)
|
||||
{
|
||||
FilterText = filterText;
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
#region Private Method LoadProspects
|
||||
|
||||
/// <summary>
|
||||
|
||||
Reference in New Issue
Block a user