Fix clone x PagInfo

This commit is contained in:
Samuele Locatelli
2023-07-13 10:33:24 +02:00
parent 32c1b5af64
commit 37ac002965
+10 -10
View File
@@ -10,18 +10,18 @@
#endregion Public Properties
//public PagInfo Clone()
//{
// PagInfo clonedData = new PagInfo()
// {
// NumRec = this.NumRec,
// CurrPage = this.CurrPage
// };
// return clonedData;
//}
#region Public Methods
public PagInfo Clone()
{
PagInfo clonedData = new PagInfo()
{
NumRec = this.NumRec,
CurrPage = this.CurrPage
};
return clonedData;
}
public override bool Equals(object? obj)
{
if (obj == null)