Ejemplo n.º 1
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;
 }
Ejemplo n.º 2
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;
 }
Ejemplo n.º 3
0
 public ApplicationsController(IApplicationsBL bl)
 {
     _bl = bl;
 }