You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -39,6 +41,33 @@ public ActionResult<CategoryDto[]> GetAll()
39
41
}
40
42
}
41
43
44
+
/// <summary>
45
+
/// Fetches all categories or a page of categories based on the provided parameters.
46
+
/// </summary>
47
+
/// <param name="skip">The number of records to skip before starting to fetch the categories. If this parameter is not provided, fetching starts from the beginning.</param>
48
+
/// <param name="top">The maximum number of categories to fetch. If this parameter is not provided, all categories are fetched.</param>
49
+
/// <param name="orderBy">A comma-separated list of fields to order the categories by, along with the sort direction (e.g., "field1 asc, field2 desc").</param>
50
+
/// <returns>A PagedResultDto object containing the fetched T and the total record count.</returns>
0 commit comments