public EntitiesSourcesController(IConfiguration configuration, MMMDBContext context,
                                  ILogger <EntitiesSourcesController> logger)
 {
     this._context       = context;
     this._logger        = logger;
     this._configuration = configuration;
 }
示例#2
0
 public BWQEntitiesController(AppDbContext context, MMMDBContext mmmcontext, ILogger <BWQEntitiesController> logger, IConfiguration configuration)
 {
     this._context       = context;
     this._mmmcontext    = mmmcontext;
     this._logger        = logger;
     this._configuration = configuration;
 }
示例#3
0
 public InvestigationController(AppDbContext context, MMMDBContext MMMcontext, ILogger <InvestigationController> logger, IConfiguration configuration)
 {
     this._MMMcontext    = MMMcontext;
     this._context       = context;
     this._logger        = logger;
     this._configuration = configuration;
 }
示例#4
0
 public EntitiesController(IConfiguration configuration, AppDbContext context, MMMDBContext MMMcontext, ILogger <EntitiesController> logger)
 {
     this._context       = context;
     this._MMMcontext    = MMMcontext;
     this._logger        = logger;
     this._configuration = configuration;
 }
示例#5
0
 public RecordLocksController(AppDbContext context, MMMDBContext mmmcontext, ILogger <RecordLocksController> logger)
 {
     this._context    = context;
     this._mmmcontext = mmmcontext;
     this._logger     = logger;
 }