Exemplo n.º 1
0
 public OperadorESController(
     IOperadorESApplication operadorESApplication,
     IReniecApplication reniecApplication,
     ILogApplication logApplication,
     IJwtApplication jwtApplication
     )
 {
     this._operadorESApplication = operadorESApplication;
     this._reniecApplication     = reniecApplication;
     this._logApplication        = logApplication;
     this._jwtApplication        = jwtApplication;
 }
 public OperadorEmpresaController(
     IOperadorEmpresaApplication operadorEmpresaApplication,
     IOngeiApplication ongeiApplication,
     IReniecApplication reniecApplication,
     ILogApplication logApplication,
     IJwtApplication jwtApplication)
 {
     this._operadorEmpresaApplication = operadorEmpresaApplication;
     this._reniecApplication          = reniecApplication;
     this._ongeiApplication           = ongeiApplication;
     this._logApplication             = logApplication;
     this._jwtApplication             = jwtApplication;
 }
Exemplo n.º 3
0
 public ReniecController(IReniecApplication reniecApplication, IOptions <AppSettings> appSettings)
 {
     _reniecApplication = reniecApplication;
     _appSettings       = appSettings.Value;
 }
 public ReniecController(IReniecApplication reniecApplication, ILogApplication logApplication, IJwtApplication jwtApplication)
 {
     this._reniecApplication = reniecApplication;
     this._logApplication    = logApplication;
     this._jwtApplication    = jwtApplication;
 }