-CodeMaid vari
This commit is contained in:
Samuele Locatelli
2022-09-12 15:12:56 +02:00
parent ac196be0b7
commit 014bed96f9
2 changed files with 71 additions and 73 deletions
+28 -31
View File
@@ -32,6 +32,22 @@
}
}
public int numRecord
{
get => _numRecord;
set
{
if (_numRecord != value)
{
_numRecord = value;
if (EA_PageUpdated != null)
{
EA_PageUpdated?.Invoke();
}
}
}
}
public string SearchVal
{
get => searchVal;
@@ -81,6 +97,18 @@
}
}
public int totalCount
{
get => _totalCount;
set
{
if (_totalCount != value)
{
_totalCount = value
}
}
}
#endregion Public Properties
#region Protected Methods
@@ -118,37 +146,6 @@
private int _numRecord { get; set; } = 10;
private int _totalCount { get; set; } = 0;
public int numRecord
{
get => _numRecord;
set
{
if (_numRecord != value)
{
_numRecord = value;
if (EA_PageUpdated != null)
{
EA_PageUpdated?.Invoke();
}
}
}
}
public int totalCount
{
get => _totalCount;
set
{
if (_totalCount != value)
{
_totalCount = value;
//if (EA_PageUpdated != null)
//{
// EA_PageUpdated?.Invoke();
//}
}
}
}
#endregion Private Properties
}
}