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