Changing the order of the ICredentials parameter in IOperationService methods
In API V8Preview7 for unification with OperationServiceExtensions
, where parameter type ICredentials
is the last of the parameters without a default value, and interface methods IOperationService
this parameter is now passed last.
Change sample:
os.DeteteOrder(auth, order)
=> os.DeteteOrder(order, auth)