Beispiel #1
0
 /// <summary>
 /// Initializes static members of the <see cref="ArtefactBaseEngine"/> class.
 /// </summary>
 static ArtefactBaseEngine()
 {
     _log = LogManager.GetLogger(typeof(ArtefactBaseEngine));
     _localisedStringInsertEngine = new LocalisedStringInsertEngine();
     _annotationInsertEngine      = new AnnotationInsertEngine();
     _tableInfoBuilder            = new TableInfoBuilder();
     _insertArtefactAnnotation    = new InsertArtefactAnnotation();
 }
Beispiel #2
0
 /// <summary>
 /// Initializes static members of the <see cref="DsdGroupImportEngine"/> class.
 /// </summary>
 static DsdGroupImportEngine()
 {
     _insertDsdGroup         = new StoredProcedures().InsertDsdGroup;
     _insertGroupAnnotation  = new InsertGroupAnnotation();
     _annotationInsertEngine = new AnnotationInsertEngine();
 }
Beispiel #3
0
 /// <summary>
 /// Initializes static members of the <see cref="ComponentImportEngine"/> class.
 /// </summary>
 static ComponentImportEngine()
 {
     _storedProcedures          = new StoredProcedures();
     _annotationInsertEngine    = new ComponentAnnotationInsertEngine(new AnnotationInsertEngine());
     _insertComponentAnnotation = _storedProcedures.InsertComponentAnnotation;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="ComponentAnnotationInsertEngine"/> class.
 /// </summary>
 /// <param name="decorated">
 /// The decorated.
 /// </param>
 public ComponentAnnotationInsertEngine(IAnnotationInsertEngine decorated)
 {
     this._decorated = decorated;
 }
Beispiel #5
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ComponentAnnotationInsertEngine"/> class.
 /// </summary>
 /// <param name="decorated">
 /// The decorated.
 /// </param>
 public ComponentAnnotationInsertEngine(IAnnotationInsertEngine decorated)
 {
     this._decorated = decorated;
 }