コード例 #1
0
 public AppSettingComponent(FalconDbContext dbContext,
                            IUserIdentityGateway identityGateway,
                            IDateTimeGateway dateTimeGateway,
                            IMapper mapper, ConfigurationComponent configuration) : base(dateTimeGateway, mapper, identityGateway, configuration)
 {
     this._dbContext = dbContext;
 }
コード例 #2
0
 protected BaseComponent(IDateTimeGateway dataTimeGateway, IMapper mapper,
                         IUserIdentityGateway identityGateway, ConfigurationComponent configuration)
 {
     this._mapper          = mapper;
     this._datetimeGateway = dataTimeGateway;
     this._identityGateway = identityGateway;
     this._configuration   = configuration;
 }
コード例 #3
0
 public CustomerQueryComponent(FalconDbContext dbContext, IMapper mapper,
                               IDateTimeGateway dateTimeGateway, IUserIdentityGateway identityGateway,
                               SquadQueryComponent squadQueryComponent,
                               ConfigurationComponent configuration, ProductQueryComponent productQueryComponent) : base(dateTimeGateway, mapper, identityGateway, configuration)
 {
     this._squadQueryComponent   = squadQueryComponent;
     this._productQueryComponent = productQueryComponent;
     this._dbContext             = dbContext;
 }
コード例 #4
0
 public ProductComponent(FalconDbContext dbContext,
                         IUserIdentityGateway identityGateway, IDateTimeGateway dateTimeGateway,
                         IMapper mapper, ConfigurationComponent configuration,
                         SourceItemComponent sourceItemComponent,
                         SourceComponent sourceComponent) : base(dateTimeGateway, mapper, identityGateway, configuration)
 {
     this._sourceItemComponent = sourceItemComponent;
     this._dbContext           = dbContext;
     this._sourceComponent     = sourceComponent;
 }
コード例 #5
0
 public MigrationComponent(FalconDbContext dbContext,
                           CustomerComponent customerComponent,
                           ProductComponent productComponent,
                           JourneyComponent journeyComponent,
                           FeatureComponent featureComponent,
                           SourceComponent sourceComponent,
                           JourneyMapComponent journeyMapComponent,
                           IndicatorComponent indicatorComponent,
                           SourceItemComponent sourceItemComponent,
                           IncidentComponent incidentComponent,
                           UserComponent userComponent,
                           ProductQueryComponent productQueryComponent,
                           IUserIdentityGateway identityGateway,
                           IDateTimeGateway dateTimeGateway, IMapper mapper,
                           FeatureQueryComponent featureQueryComponent,
                           SecurityRiskComponent securityRiskComponent,
                           ReliabilityRiskComponent reliabilityRiskComponent,
                           SquadComponent squadComponent, SquadQueryComponent squadQueryComponent,
                           ConfigurationComponent configuration) : base(dateTimeGateway, mapper, identityGateway, configuration)
 {
     this._customerComponent        = customerComponent;
     this._sourceComponent          = sourceComponent;
     this._dbContext                = dbContext;
     this._squadComponent           = squadComponent;
     this._squadQueryComponent      = squadQueryComponent;
     this._productComponent         = productComponent;
     this._journeyComponent         = journeyComponent;
     this._featureComponent         = featureComponent;
     this._journeyMapComponent      = journeyMapComponent;
     this._indicatorComponent       = indicatorComponent;
     this._sourceComponent          = sourceComponent;
     this._sourceItemComponent      = sourceItemComponent;
     this._incidentComponent        = incidentComponent;
     this._userComponent            = userComponent;
     this._productQueryComponent    = productQueryComponent;
     this._featureQueryComponent    = featureQueryComponent;
     this._securityRiskComponent    = securityRiskComponent;
     this._reliabilityRiskComponent = reliabilityRiskComponent;
 }
コード例 #6
0
 public FeatureQueryComponent(FalconDbContext dbContext, IDateTimeGateway dateTimeGateway,
                              IMapper mapper, IUserIdentityGateway userIdentityGateway,
                              ConfigurationComponent configuration) : base(dateTimeGateway, mapper, userIdentityGateway, configuration)
 {
     this._dbContext = dbContext;
 }