Fixed warning SA1116 (The parameters should begin on the line after the declaration...), whenever in ctor

This commit is contained in:
Emma Garland
2023-10-21 11:38:12 +01:00
committed by Michael Latouche
parent f3028a00b3
commit 16c5c4c4e8

View File

@@ -10,7 +10,8 @@ public abstract class QueryOptionBase
private readonly IPublishedSnapshotAccessor _publishedSnapshotAccessor;
private readonly IRequestRoutingService _requestRoutingService;
public QueryOptionBase(IPublishedSnapshotAccessor publishedSnapshotAccessor,
public QueryOptionBase(
IPublishedSnapshotAccessor publishedSnapshotAccessor,
IRequestRoutingService requestRoutingService)
{
_publishedSnapshotAccessor = publishedSnapshotAccessor;