// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
    public void Configure(IApplicationBuilder app, IHostingEnvironment env)
    {
        if (env.IsDevelopment())
        {
            app.UseDeveloperExceptionPage();
        }
        else
        {
            app.UseHsts();
        }

        LandingLoggingStartup.Configure(app);
        app.UseMvc();
    }
    // This method gets called by the runtime. Use this method to add services to the container.
    public void ConfigureServices(IServiceCollection services)
    {
        services.AddMvc().SetCompatibilityVersion(CompatibilityVersion.Version_2_1);

        services.AddOptions <ActivationServiceOptions>(Configuration);

        services.AddScoped <ActivationServiceContext>();
        services.AddOptions <ActivationServiceContextOptions>(Configuration);

        services.AddOptions <KeysProviderOptions>(Configuration);
        services.AddScoped <IEncryptor, Encryptor>();

        LandingLoggingStartup.ConfigureServices(services, Configuration);
    }