Fix clone x PagInfo
This commit is contained in:
+10
-10
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user