/// <summary> /// Конструктор класса CompareAgent /// </summary> /// <param name="DebugMode">Определяет включение/выключение режима debug в классе. DebugMode = true включает режим debug</param> public CompareAgent(bool DebugMode) { this.DebugMode = DebugMode; ConfigureLoggingSubsystem(); _section = (ExecuteActionsConfigSection)ConfigurationManager.GetSection("execute"); }
/// <summary> /// Конструктор класса CompareAgent /// </summary> public CompareAgent() { DebugMode = false; ConfigureLoggingSubsystem(); _section = (ExecuteActionsConfigSection)ConfigurationManager.GetSection("execute"); }