CfgCtx.cs 351 B

12345678910111213
  1. using BO.ProcessServer.Business.StatisticCounters;
  2. using BO.ProcessServer.Options;
  3. namespace BO.ProcessServer.Business.Workers.Contexts
  4. {
  5. internal class CfgCtx : BaseCtx
  6. {
  7. public CfgCtx(Configuration configuration, Statistics statistics, Pool pool) : base(configuration, statistics, pool)
  8. {
  9. }
  10. }
  11. }