Exemplo n.º 1
0
        public void CadastraContas()
        {
            Dictionary <int, double> dictContas = new Dictionary <int, double>();

            dictContas.Add(54321, 800.00);
            dictContas.Add(12345, 600.00);
            dictContas.Add(11111, 700.00);

            foreach (KeyValuePair <int, double> kvp in dictContas)
            {
                Conta conta = new Conta()
                {
                    NumeroConta = kvp.Key,
                    Saldo       = kvp.Value
                };

                ContaBusiness business = new ContaBusiness();
                business.CadastrarConta(conta);
            }
        }
Exemplo n.º 2
0
        // This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
        public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
        {
            if (env.IsDevelopment())
            {
                app.UseDeveloperExceptionPage();
            }

            app.UseHttpsRedirection();

            app.UseRouting();

            app.UseAuthorization();

            app.UseEndpoints(endpoints =>
            {
                endpoints.MapControllers();
            });

            Dictionary <int, double> dictContas = new Dictionary <int, double>();

            dictContas.Add(54321, 800.00);
            dictContas.Add(12345, 600.00);
            dictContas.Add(11111, 700.00);

            foreach (KeyValuePair <int, double> kvp in dictContas)
            {
                Conta conta = new Conta()
                {
                    NumeroConta = kvp.Key,
                    Saldo       = kvp.Value
                };

                ContaBusiness business = new ContaBusiness();
                business.CadastrarConta(conta);
            }
        }