コード例 #1
0
        // This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
        public void Configure(IApplicationBuilder app, IHostingEnvironment env, CadastrosContext _CadastrosContext)
        {
            if (env.IsDevelopment())
            {
                app.UseDeveloperExceptionPage();
            }
            else
            {
                app.UseExceptionHandler("/Error");
                app.UseHsts();
            }

            app.UseHttpsRedirection();
            app.UseStaticFiles();
            app.UseSpaStaticFiles();

            app.UseMvc(routes =>
            {
                routes.MapRoute(
                    name: "default",
                    template: "{controller}/{action=Index}/{id?}");
            });

            app.UseSpa(spa =>
            {
                // To learn more about options for serving an Angular SPA from ASP.NET Core,
                // see https://go.microsoft.com/fwlink/?linkid=864501

                spa.Options.SourcePath = "ClientApp";

                if (env.IsDevelopment())
                {
                    spa.UseAngularCliServer(npmScript: "start");
                }
            });

            var scopeFactory = app.ApplicationServices.GetRequiredService <IServiceScopeFactory>();

            using (var scope = scopeFactory.CreateScope())
            {
                var db = scope.ServiceProvider.GetRequiredService <CadastrosContext>();
                //var ldapService = scope.ServiceProvider.GetRequiredService<ILdapService>();
                // rest of your code
            }
        }
コード例 #2
0
 public CadastroRepositoryAbstrato(CadastrosContext context, IClientesDatabaseConfig configMongo)
 {
     this._context = context;
     _mongo        = new MongoDB(configMongo);
 }
コード例 #3
0
 public AuthRepository()
 {
     _ctx         = new CadastrosContext();
     _userManager = new UserManager <IdentityUser>(new UserStore <IdentityUser>(_ctx));
 }
コード例 #4
0
 public PedidoRepository(CadastrosContext context)
 {
     _context = context;
 }
コード例 #5
0
 public ClienteRepository(CadastrosContext context, IClientesDatabaseConfig clientesDatabaseConfig) : base(context, clientesDatabaseConfig)
 {
 }
コード例 #6
0
 public ProdutoRepository(CadastrosContext contexto, IClientesDatabaseConfig config) : base(contexto, config)
 {
 }
コード例 #7
0
 public UserRepository(CadastrosContext context)
 {
     _db = context;
 }