コード例 #1
0
 public ApplicationService(
     MultiTenantPlatformDbContext multiTenantPlatformDbContext,
     IMetaObjectService _metaObjectService
     ) : base(multiTenantPlatformDbContext)
 {
     dbContext         = multiTenantPlatformDbContext;
     metaObjectService = _metaObjectService;
 }
 public FormMetaFieldService(
     MultiTenantPlatformDbContext multiTenantPlatformDbContext,
     IMetaFieldService _metaFieldService
     ) : base(multiTenantPlatformDbContext)
 {
     dbContext        = multiTenantPlatformDbContext;
     metaFieldService = _metaFieldService;
 }
 public SearchConditionNodeService(
     MultiTenantPlatformDbContext multiTenantPlatformDbContext,
     IMetaFieldService _metaFieldService
     ) : base(multiTenantPlatformDbContext)
 {
     dbContext        = multiTenantPlatformDbContext;
     metaFieldService = _metaFieldService;
 }
 public FieldListAggregationService(
     MultiTenantPlatformDbContext multiTenantPlatformDbContext,
     IMetaFieldService _metaFieldService
     ) : base(multiTenantPlatformDbContext)
 {
     dbContext        = multiTenantPlatformDbContext;
     metaFieldService = _metaFieldService;
 }
 public TenantApplicationLicenseService(AccountDbContext accountDbContext,
                                        MultiTenantPlatformDbContext multiTenantPlatformDbContext,
                                        ITenantInfoService tenantInfoService) : base(accountDbContext)
 {
     _dbContext = accountDbContext;
     _MultiTenantPlatformDbContext = multiTenantPlatformDbContext;
     _tenantInfoService            = tenantInfoService;
 }
コード例 #6
0
 public TriggerScriptService(
     MultiTenantPlatformDbContext multiTenantPlatformDbContext,
     IScriptEngineProvider scriptEngineProvider,
     IDataSourceService dataSourceService
     ) : base(multiTenantPlatformDbContext)
 {
     _dbContext            = multiTenantPlatformDbContext;
     _scriptEngineProvider = scriptEngineProvider;
     _dataSourceService    = dataSourceService;
 }
コード例 #7
0
 public IndexViewService(
     MultiTenantPlatformDbContext multiTenantPlatformDbContext,
     IFieldListService _interfaceFieldService,
     ISearchConditionService _searchConditionService
     ) : base(multiTenantPlatformDbContext)
 {
     dbContext = multiTenantPlatformDbContext;
     this.interfaceFieldService  = _interfaceFieldService;
     this.searchConditionService = _searchConditionService;
 }
 public InterfaceAggregationService(
     MultiTenantPlatformDbContext multiTenantPlatformDbContext,
     IFieldListService fieldListService,
     ISearchConditionService _searchConditionService,
     IFormService formService,
     IDataSourceService dataSourceService
     ) : base(multiTenantPlatformDbContext)
 {
     dbContext = multiTenantPlatformDbContext;
     this._fieldListService      = fieldListService;
     this.searchConditionService = _searchConditionService;
     _formService       = formService;
     _dataSourceService = dataSourceService;
 }
コード例 #9
0
 public MetaObjectService(
     MultiTenantPlatformDbContext multiTenantPlatformDbContext,
     IMetaFieldService _metaFieldService,
     IFieldListService _fieldListService,
     IInterfaceAggregationService _interfaceAggregationService,
     ISearchConditionService _searchConditionService,
     ITriggerScriptService _triggerScriptService
     ) : base(multiTenantPlatformDbContext)
 {
     dbContext                   = multiTenantPlatformDbContext;
     metaFieldService            = _metaFieldService;
     fieldListService            = _fieldListService;
     interfaceAggregationService = _interfaceAggregationService;
     searchConditionService      = _searchConditionService;
     triggerScriptService        = _triggerScriptService;
 }
コード例 #10
0
 public FieldListService(MultiTenantPlatformDbContext multiTenantPlatformDbContext) : base(multiTenantPlatformDbContext)
 {
     dbContext = multiTenantPlatformDbContext;
 }
コード例 #11
0
 public MenueService(
     MultiTenantPlatformDbContext multiTenantPlatformDbContext
     ) : base(multiTenantPlatformDbContext)
 {
     dbContext = multiTenantPlatformDbContext;
 }
コード例 #12
0
 public MetaObjectManageRepository(MultiTenantPlatformDbContext multiTenantPlatformDbContext) : base(multiTenantPlatformDbContext)
 {
     dbContext = multiTenantPlatformDbContext;
 }
 public CommonInfoRepository(MultiTenantPlatformDbContext multiTenantPlatformDbContext) : base(multiTenantPlatformDbContext)
 {
     dbContext = multiTenantPlatformDbContext;
 }
 public SearchConditionService(
     MultiTenantPlatformDbContext multiTenantPlatformDbContext
     ) : base(multiTenantPlatformDbContext)
 {
     dbContext = multiTenantPlatformDbContext;
 }
コード例 #15
0
 public Repository(MultiTenantPlatformDbContext multiTenantPlatformDbContext)
 {
     dbContext = multiTenantPlatformDbContext;
 }
コード例 #16
0
 public DataSourceService(MultiTenantPlatformDbContext multiTenantPlatformDbContext) : base(multiTenantPlatformDbContext)
 {
     _dbContext = multiTenantPlatformDbContext;
 }
 public TriggerScriptService(MultiTenantPlatformDbContext multiTenantPlatformDbContext) : base(multiTenantPlatformDbContext)
 {
     dbContext = multiTenantPlatformDbContext;
 }