/// <summary> /// Creates a new instance of the <see cref="RemoveLoggingPolicyCommand"/> class with the given <see cref="ILoggingPolicyService"/>. /// </summary> /// <param name="loggingService">The <see cref="ILoggingPolicyService"/> to use. The default is the current instance.</param> internal RemoveLoggingPolicyCommand(ILoggingPolicyService loggingService = null) : base(loggingService) { }
/// <summary> /// Creates a new instance of the <see cref="LoggingPolicyCommandBase"/> class using the given <see cref="ILoggingPolicyService"/>. /// </summary> /// <param name="loggingService">The <see cref="ILoggingPolicyService"/> to use. The default is the current instance.</param> internal LoggingPolicyCommandBase(ILoggingPolicyService loggingService = null) { this.loggingService = loggingService ?? this; }
/// <summary> /// Initializes a new instance of the <see cref="LoggingPolicyCommandBase"/> class. /// </summary> /// <param name="loggingService">The <see cref="ILoggingPolicyService"/> to use. The default is the current instance.</param> internal LoggingPolicyCommandBase(ILoggingPolicyService loggingService = null) { this.loggingService = loggingService ?? this; }