コード例 #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="OdmAdapter" /> class.
 /// </summary>
 /// <param name="connection">The connection.</param>
 /// <param name="parser">The parser.</param>
 /// <param name="study">The study.</param>
 /// <param name="environment">The environment.</param>
 public OdmAdapter(IRWSConnection connection, IAuditEventParser parser, string study, string environment)
 {
     Connection  = connection;
     Study       = study;
     Environment = environment;
     StartId     = 0;
     Parser      = parser;
 }
コード例 #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="OdmAdapter" /> class.
 /// </summary>
 /// <param name="connection">The connection.</param>
 /// <param name="parser">The parser.</param>
 /// <param name="study">The study.</param>
 /// <param name="environment">The environment.</param>
 /// <param name="subscriber">The subscriber.</param>
 public OdmAdapter(IRWSConnection connection, IAuditEventParser parser, string study, string environment, AuditEventSubscriber subscriber) : this(connection, parser, study, environment)
 {
     Subscriber = subscriber;
 }