public SeekersController(IConfiguration config, ISeekersBL seekersBL, IApplicationsBL applicationsBL, IGeneralManager generalManager) { this._config = config; this._configGeneral = config.Get <AppSettings>().General; this._seekersBL = seekersBL; this._applicationsBL = applicationsBL; this._generalManager = generalManager; }
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; }
public ApplicationsController(IApplicationsBL bl) { _bl = bl; }