public MySqlExtractionDatabase(
     IMySqlMapper mySqlMapper,
     ICSharpMapper cSharpMapper)
 {
     _mySqlMapper  = mySqlMapper;
     _cSharpMapper = cSharpMapper;
 }
 public SqlServerDynamicListQueryDatabase(
     IDynamicQueryBuilder builder,
     ISqlServerMapper sqlServerMapper,
     ICSharpMapper cSharpMapper)
 {
     _builder         = builder;
     _sqlServerMapper = sqlServerMapper;
     _cSharpMapper    = cSharpMapper;
 }
 public MySqlDynamicListQueryDatabase(
     IDynamicQueryBuilder builder,
     IMySqlMapper mySqlMapper,
     ICSharpMapper cSharpMapper)
 {
     _builder      = builder;
     _mySqlMapper  = mySqlMapper;
     _cSharpMapper = cSharpMapper;
 }
Пример #4
0
 public PostgreDynamicListQueryDatabase(
     IDynamicQueryBuilder builder,
     IPostgreSqlMapper postgreSqlMapper,
     ICSharpMapper cSharpMapper)
 {
     _builder          = builder;
     _postgreSqlMapper = postgreSqlMapper;
     _cSharpMapper     = cSharpMapper;
 }
Пример #5
0
 public PostgreExecutionChartReport(
     IChartReportQueryBuilder chartReportQueryBuilder,
     IChartReportProjection chartReportProjection,
     IPostgreSqlMapper postgreSqlMapper,
     ICSharpMapper cSharpMapper)
 {
     _chartReportQueryBuilder = chartReportQueryBuilder;
     _chartReportProjection   = chartReportProjection;
     _postgreSqlMapper        = postgreSqlMapper;
     _cSharpMapper            = cSharpMapper;
 }
 public MySqlExecutionChartReport(
     IChartReportQueryBuilder chartReportQueryBuilder,
     IChartReportProjection chartReportProjection,
     IMySqlMapper mySqlMapper,
     ICSharpMapper cSharpMapper)
 {
     _chartReportQueryBuilder = chartReportQueryBuilder;
     _chartReportProjection   = chartReportProjection;
     _mySqlMapper             = mySqlMapper;
     _cSharpMapper            = cSharpMapper;
 }
 public SqlServerExecutionChartReport(
     IChartReportQueryBuilder chartReportQueryBuilder,
     IChartReportProjection chartReportProjection,
     ISqlServerMapper sqlServerMapper,
     ICSharpMapper cSharpMapper)
 {
     _chartReportQueryBuilder = chartReportQueryBuilder;
     _chartReportProjection   = chartReportProjection;
     _sqlServerMapper         = sqlServerMapper;
     _cSharpMapper            = cSharpMapper;
 }
Пример #8
0
 public MySqlExtractionChartQuery(IMySqlMapper mySqlMapper, ICSharpMapper cSharpMapper)
 {
     _mySqlMapper  = mySqlMapper;
     _cSharpMapper = cSharpMapper;
 }
 public SqlServerExtractionDatabase(ISqlServerMapper sqlServerMapper, ICSharpMapper cSharpMapper)
 {
     _sqlServerMapper = sqlServerMapper;
     _cSharpMapper    = cSharpMapper;
 }
Пример #10
0
 public PostgreExtractionDatabase(IPostgreSqlMapper postgreSqlMapper, ICSharpMapper cSharpMapper)
 {
     _postgreSqlMapper = postgreSqlMapper;
     _cSharpMapper     = cSharpMapper;
 }
Пример #11
0
 public SqlServerExtractionChartQuery(ISqlServerMapper sqlServerMapper, ICSharpMapper cSharpMapper)
 {
     _sqlServerMapper = sqlServerMapper;
     _cSharpMapper    = cSharpMapper;
 }
Пример #12
0
 public PostgreExtractionChartQuery(IPostgreSqlMapper postgreSqlMapper, ICSharpMapper cSharpMapper)
 {
     _postgreSqlMapper = postgreSqlMapper;
     _cSharpMapper     = cSharpMapper;
 }