Exemplo n.º 1
0
        // This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
        public void Configure(IApplicationBuilder app, IWebHostEnvironment env, ComputeFutureValueDbContext context)
        {
            if (env.IsDevelopment())
            {
                app.UseDeveloperExceptionPage();
            }

            app.UseCors(builder => builder
                        .AllowAnyOrigin()
                        .AllowAnyMethod()
                        .AllowAnyHeader());

            app.UseHttpsRedirection();

            app.UseRouting();

            app.UseAuthorization();

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

            ComputeFutureValueApiSeeder.EnsureDataSeedAsync(context).Wait();
        }
Exemplo n.º 2
0
        public GenericRepository(ComputeFutureValueDbContext context, ILogger <T> logger)
        {
            _context = context;
            _entity  = context.Set <T>();

            _logger = logger;
        }