Beispiel #1
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;
            });
            services.AddDbContext <InitialDbContext>(option => option.UseSqlServer(Configuration.GetConnectionString("PobedaDb")));
            //services.AddDbContext<InsertedInfoDbContext>(option => option.UseSqlServer(Configuration.GetConnectionString("PobedaDb")));

            services.AddMvc().SetCompatibilityVersion(CompatibilityVersion.Version_2_1);
            //   services.AddScoped<Migration>();


            //new Migration().StartMigrate();
            var picker = new ColorPicker();

            picker.DictionaryGetValue();
        }