Skip to content

Commit 29515f8

Browse files
feature(#2): removed the line break between the method signature and its parameters, making the code more compact and aligned
1 parent c742221 commit 29515f8

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

Artifacts/Comanda.Internal.Contracts/Source/Clients/OrderClient.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,7 @@ public async Task<Result<PaginationScheme<OrderScheme>>> GetOrdersAsync(OrdersFe
6161
return Result<PaginationScheme<OrderScheme>>.Success(result);
6262
}
6363

64-
public async Task<Result<OrderScheme>> CreateOrderAsync(
65-
OrderCreationScheme parameters, CancellationToken cancellation = default)
64+
public async Task<Result<OrderScheme>> CreateOrderAsync(OrderCreationScheme parameters, CancellationToken cancellation = default)
6665
{
6766
var response = await httpClient.PostAsJsonAsync("orders", parameters, cancellation);
6867
var content = await response.Content.ReadAsStringAsync(cancellation);

0 commit comments

Comments
 (0)