| 12345678910111213141516 |
- using System;
- using BO.ProcessServer.Business.StatisticCounters;
- using BO.ProcessServer.Options;
- namespace BO.ProcessServer.Business.Workers.Contexts
- {
- internal class CfgCtx : BaseCtx
- {
- public Configuration Configuration { get; }
- public CfgCtx(Configuration configuration, Statistics statistics, Pool pool) : base(statistics, pool)
- {
- Configuration = configuration ?? throw new ArgumentNullException(nameof(configuration));
- }
- }
- }
|