Example #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ExecutorArgsBase"/> class.
 /// </summary>
 /// <param name="executor">The <see cref="Executor"/>.</param>
 /// <param name="runType">The <see cref="ExecutorRunType"/>.</param>
 internal ExecutorArgsBase(Executor executor, ExecutorRunType runType)
 {
     Executor = Check.NotNull(executor, nameof(executor));
     RunType  = runType;
 }
Example #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ExecutorArgsBase"/> class.
 /// </summary>
 /// <param name="executor">The <see cref="Executor"/>.</param>
 /// <param name="runType">The <see cref="ExecutorRunType"/>.</param>
 internal ExecutorArgsBase(Executor executor, ExecutorRunType runType)
 {
     _executor = executor;
     _runType  = runType;
 }