public TargetElementHelper(IDatabaseContextGeneration databaseContextGeneration = null, IDatabaseImageElementHelper databaseImageElementHelper = null)
        {
            _databaseContextGeneration = databaseContextGeneration ?? new DatabaseContextGeneration();

            _databaseImageElementHelper = databaseImageElementHelper ?? new DatabaseImageElementHelper();
        }
Exemple #2
0
 public DatabaseImageElementHelper(IDatabaseContextGeneration databaseContextGeneration = null)
 {
     //If context is null new context will be created
     _databaseContextGeneration = databaseContextGeneration ?? new DatabaseContextGeneration();
 }
Exemple #3
0
 public HistoryModelHelper(IDatabaseContextGeneration databaseContextGeneration = null)
 {
     //If context is null new context will be created
     _databaseContextGeneration = databaseContextGeneration ?? new DatabaseContextGeneration();
 }
 public FaceFeaturesHelper(IDatabaseContextGeneration databaseContextGeneration = null)
 {
     //If context is null new context will be created
     _databaseContextGeneration = databaseContextGeneration ?? new DatabaseContextGeneration();
 }