Esempio n. 1
0
        // This method gets called by the runtime. Use this method to add services to the container.
        // For more information on how to configure your application, visit https://go.microsoft.com/fwlink/?LinkID=398940
        public void ConfigureServices(IServiceCollection services)
        {
            services.AddOptions();
            services.AddMvc();
            var connectionString = Configuration.GetConnectionString("DefaultConnection");
            var diConfigurator   = new DiConfigurator(connectionString, Configuration);

            diConfigurator.ConfigureServices(services);

            services.Configure <TravelxSettings>(Configuration.GetSection("TravelxSettings"));

            ConfigureApplicationCookie(services);
        }
Esempio n. 2
0
        // This method gets called by the runtime. Use this method to add services to the container.
        public void ConfigureServices(IServiceCollection services)
        {
            services.Configure <CookiePolicyOptions>(options =>
            {
                // This lambda determines whether user consent for non-essential cookies is needed for a given request.
                options.CheckConsentNeeded    = context => true;
                options.MinimumSameSitePolicy = SameSiteMode.None;
            });

            var diConfigurator = new DiConfigurator(Configuration);

            diConfigurator.ConfigureServices(services);

            services.Configure <ApplicationSettings>(Configuration.GetSection("ApplicationSettings"));


            services.AddMvc().SetCompatibilityVersion(CompatibilityVersion.Version_2_1);
        }