public MunicipalidadController(
     IMunicipalidadApplication municipalidadApplication,
     ISSOApplication sSOApplication,
     ILogApplication logApplication,
     IJwtApplication jwtApplication
     )
 {
     this._municipalidadApplication = municipalidadApplication;
     this._sSOApplication           = sSOApplication;
     this._logApplication           = logApplication;
     this._jwtApplication           = jwtApplication;
 }
 public EstacionServicioController(
     IEstacionServicioApplication estacionServicioApplication,
     ISSOApplication sSOApplication,
     ILogApplication logApplication,
     IJwtApplication jwtApplication
     )
 {
     this._estacionServicioApplication = estacionServicioApplication;
     this._sSOApplication = sSOApplication;
     this._logApplication = logApplication;
     this._jwtApplication = jwtApplication;
 }
예제 #3
0
 public SucursalESController(
     ISucursalESApplication sucursalESApplication,
     ISSOApplication sSOApplication,
     ILogApplication logApplication,
     IJwtApplication jwtApplication
     )
 {
     this._sucursalESApplication = sucursalESApplication;
     this._sSOApplication        = sSOApplication;
     this._logApplication        = logApplication;
     this._jwtApplication        = jwtApplication;
 }
        public SSOController(
            ISSOApplication sSOApplication,
            IAdminApplication adminApplication,
            IJwtApplication jwtApplication,
            ILogApplication logApplication,
            ICaptchaApplication captchaApplication,
            IOptions <AppSettings.CredencialesSSO> settings)
        {
            this._sSOApplication     = sSOApplication;
            this._adminApplication   = adminApplication;
            this._jwtApplication     = jwtApplication;
            this._logApplication     = logApplication;
            this._captchaApplication = captchaApplication;
            this._settings           = settings.Value;

            string sPerfiles = this._settings.Profiles;

            this._perfilesPermitidos = new List <string>();
            this._perfilesPermitidos.AddRange(sPerfiles.Split(';'));
        }