public EAuthController(IOptions <EAuthSettings> settings,
                        IApplicationStoreService applicationStoreService,
                        AuthService authService)
 {
     _settings = settings.Value;
     _applicationStoreService = applicationStoreService;
     _authService             = authService;
 }
 public EAuthApiController(IOptions <EAuthSettings> settings)
 {
     _settings = settings.Value;
 }