示例#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, CanshopContext context)
        {
            context.Database.Migrate();
            app.UseCors(MyAllowSpecificOrigins);
            if (env.IsDevelopment())
            {
                app.UseDeveloperExceptionPage();
            }
            else
            {
                // The default HSTS value is 30 days. You may want to change this for production scenarios, see https://aka.ms/aspnetcore-hsts.
                app.UseHsts();
            }

            app.UseMvc();
        }
示例#2
0
文件: UserRepo.cs 项目: b93rn/CanShop
 public UserRepo(CanshopContext db)
 {
     _db = db;
 }
示例#3
0
 public ProductRepo(CanshopContext db)
 {
     _db = db;
 }
示例#4
0
 public SaleRepo(CanshopContext db, IUserRepo userRepo, IProductRepo productRepo)
 {
     _db          = db;
     _userRepo    = userRepo;
     _productRepo = productRepo;
 }