Example #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.AddMvc().SetCompatibilityVersion(CompatibilityVersion.Version_2_2);


            // Setting up som customers and accounts
            var repository = new Models.BankRepository();

            repository.Customers.Add(new Models.Customer(1, "Sir Bobby", "La Bob"));
            repository.Customers.Add(new Models.Customer(2, "Lucindel", "Lurfvelkurvelhopf Von Kirkenhal"));
            repository.Customers.Add(new Models.Customer(3, "David", "Hasselhoff"));

            repository.Accounts.Add(new Models.Account(1, 1, 5000000m));
            repository.Accounts.Add(new Models.Account(2, 2, 9000000m));
            repository.Accounts.Add(new Models.Account(3, 3, 0.5m));
            repository.Accounts.Add(new Models.Account(4, 1, 10000m));
            repository.Accounts.Add(new Models.Account(5, 1, 3500000m));

            services.AddSingleton(repository);
        }