26 lines
576 B
C#
26 lines
576 B
C#
using EgwCoreLib.Lux.Data.DbModel.Cost;
|
|
using EgwCoreLib.Lux.Data.DbModel.Task;
|
|
using EgwCoreLib.Lux.Data.Services;
|
|
using Lux.UI.Components.Compo.JobTask;
|
|
using Microsoft.AspNetCore.Components;
|
|
|
|
namespace Lux.UI.Components.Pages
|
|
{
|
|
public partial class Resources
|
|
{
|
|
#region Protected Methods
|
|
|
|
protected void ResetSearch()
|
|
{
|
|
searchVal = "";
|
|
}
|
|
|
|
#endregion Protected Methods
|
|
|
|
#region Private Properties
|
|
|
|
private string searchVal { get; set; } = string.Empty;
|
|
|
|
#endregion Private Properties
|
|
}
|
|
} |