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
Copy file name to clipboardExpand all lines: NorthwindCRUD/Controllers/ProductsController.cs
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,6 @@
1
1
namespaceNorthwindCRUD.Controllers
2
2
{
3
+
usingSystem.Globalization;
3
4
usingSystem.Reflection;
4
5
usingAutoMapper;
5
6
usingMicrosoft.AspNetCore.Authorization;
@@ -50,9 +51,9 @@ public ActionResult<ProductDto[]> GetAll()
50
51
/// <param name="skip">Previously called pageNumber. The number of the page to fetch. If this parameter is not provided, all products are fetched.</param>
51
52
/// <param name="top">Previously called pageSize. The size of the page to fetch. If this parameter is not provided, all products are fetched.</param>
52
53
/// <param name="orderBy">The fields to order by, in the format "field1 asc, field2 desc". If not provided, defaults to no specific order.</param>
53
-
/// <returns>A ProductDtoCollection object containing the fetched products and the total record count.</returns>
54
+
/// <returns>A PagedProductsDto object containing the fetched products and the total record count.</returns>
0 commit comments