Example #1
0
 public ApplicationsController(IConfiguration config, IServiceProvider sp, ISeekersBL seekersBL, IApplicationsBL applicationsBL, IGeneralManager generalManager, IReactionsBL reactionsBL)
 {
     this._config         = config;
     this._configGeneral  = config.Get <AppSettings>().General;
     this._sp             = sp;
     this._seekersBL      = seekersBL;
     this._applicationsBL = applicationsBL;
     this._generalManager = generalManager;
     this._reactionsBL    = reactionsBL;
 }
Example #2
0
 public ReactionsController(IReactionsBL reactionsBL)
 {
     this._reactionsBL = reactionsBL;
 }