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>
@@ -39,6 +41,33 @@ public ActionResult<CustomerDto[]> GetAll()
39
41
}
40
42
}
41
43
44
+
/// <summary>
45
+
/// Fetches all customers or a page of customers based on the provided parameters.
46
+
/// </summary>
47
+
/// <param name="skip">The number of records to skip before starting to fetch the customers. If this parameter is not provided, fetching starts from the beginning.</param>
48
+
/// <param name="top">The maximum number of customers to fetch. If this parameter is not provided, all customers are fetched.</param>
49
+
/// <param name="orderBy">A comma-separated list of fields to order the customers 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>
@@ -41,6 +43,33 @@ public ActionResult<EmployeeDto[]> GetAll()
41
43
}
42
44
}
43
45
46
+
/// <summary>
47
+
/// Fetches all employees or a page of employees based on the provided parameters.
48
+
/// </summary>
49
+
/// <param name="skip">The number of records to skip before starting to fetch the employees. If this parameter is not provided, fetching starts from the beginning.</param>
50
+
/// <param name="top">The maximum number of employees to fetch. If this parameter is not provided, all employees are fetched.</param>
51
+
/// <param name="orderBy">A comma-separated list of fields to order the employees by, along with the sort direction (e.g., "field1 asc, field2 desc").</param>
52
+
/// <returns>A PagedResultDto object containing the fetched T and the total record count.</returns>
@@ -46,6 +48,33 @@ public ActionResult<OrderDto[]> GetAll()
46
48
}
47
49
}
48
50
51
+
/// <summary>
52
+
/// Fetches all orders or a page of orders based on the provided parameters.
53
+
/// </summary>
54
+
/// <param name="skip">The number of records to skip before starting to fetch the orders. If this parameter is not provided, fetching starts from the beginning.</param>
55
+
/// <param name="top">The maximum number of orders to fetch. If this parameter is not provided, all orders are fetched.</param>
56
+
/// <param name="orderBy">A comma-separated list of fields to order the orders by, along with the sort direction (e.g., "field1 asc, field2 desc").</param>
57
+
/// <returns>A PagedResultDto object containing the fetched T and the total record count.</returns>
@@ -43,6 +47,33 @@ public ActionResult<ProductDto[]> GetAll()
43
47
}
44
48
}
45
49
50
+
/// <summary>
51
+
/// Fetches all products or a page of products based on the provided parameters.
52
+
/// </summary>
53
+
/// <param name="skip">The number of records to skip before starting to fetch the products. If this parameter is not provided, fetching starts from the beginning.</param>
54
+
/// <param name="top">The maximum number of products to fetch. If this parameter is not provided, all products are fetched.</param>
55
+
/// <param name="orderBy">A comma-separated list of fields to order the products by, along with the sort direction (e.g., "field1 asc, field2 desc").</param>
56
+
/// <returns>A PagedResultDto object containing the fetched T and the total record count.</returns>
@@ -40,6 +42,33 @@ public ActionResult<RegionDto[]> GetAll()
40
42
}
41
43
}
42
44
45
+
/// <summary>
46
+
/// Fetches all regions or a page of regions based on the provided parameters.
47
+
/// </summary>
48
+
/// <param name="skip">The number of records to skip before starting to fetch the regions. If this parameter is not provided, fetching starts from the beginning.</param>
49
+
/// <param name="top">The maximum number of regions to fetch. If this parameter is not provided, all regions are fetched.</param>
50
+
/// <param name="orderBy">A comma-separated list of fields to order the regions by, along with the sort direction (e.g., "field1 asc, field2 desc").</param>
51
+
/// <returns>A PagedResultDto object containing the fetched T and the total record count.</returns>
@@ -40,6 +42,33 @@ public ActionResult<ShipperDto[]> GetAll()
40
42
}
41
43
}
42
44
45
+
/// <summary>
46
+
/// Fetches all shippers or a page of shippers based on the provided parameters.
47
+
/// </summary>
48
+
/// <param name="skip">The number of records to skip before starting to fetch the shippers. If this parameter is not provided, fetching starts from the beginning.</param>
49
+
/// <param name="top">The maximum number of shippers to fetch. If this parameter is not provided, all shippers are fetched.</param>
50
+
/// <param name="orderBy">A comma-separated list of fields to order the shippers by, along with the sort direction (e.g., "field1 asc, field2 desc").</param>
51
+
/// <returns>A PagedResultDto object containing the fetched T and the total record count.</returns>
0 commit comments