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