Skip to content

Commit 8c98e84

Browse files
committed
readme
1 parent 461c061 commit 8c98e84

File tree

2 files changed

+1231
-244
lines changed

2 files changed

+1231
-244
lines changed

ManagedCode.Communication/CollectionResultT/CollectionResult.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -170,15 +170,15 @@ public void AddInvalidMessage(string key, string value)
170170
/// </summary>
171171
public static CollectionResult<T> Empty()
172172
{
173-
return Create(true, [], 1, 0, 0);
173+
return Create(true, [], 0, 0, 0);
174174
}
175175

176176
/// <summary>
177177
/// Creates an empty collection result with paging information.
178178
/// </summary>
179-
public static CollectionResult<T> Empty(int pageNumber, int pageSize)
179+
public static CollectionResult<T> Empty()
180180
{
181-
return Create(true, [], pageNumber, pageSize, 0);
181+
return Create(true, [], 0, 0, 0);
182182
}
183183

184184
#endregion

0 commit comments

Comments
 (0)