public AccountController(IConfiguration configuration, IServiceProvider sp, ISeekersBL seekersBL, IEmployersBL employersBL) { this._configuration = configuration; this._sp = sp; this._seekersBL = seekersBL; this._employersBL = employersBL; }
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 ApplicationsBL(ISeekersBL seekersBL) { ApplicationsCRUD = new CRUD <application>(); InterviewsCRUD = new CRUD <interview>(); _seekersBL = seekersBL; }