// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
 public void Configure(IApplicationBuilder app, IHostingEnvironment env, ISeedData seedData)
 {
     if (env.IsDevelopment())
     {
         app.UseDeveloperExceptionPage();
     }
     app.UseStaticFiles();
     app.UseMvc();
     seedData.Seed();
 }
Beispiel #2
0
 public void Seed()
 {
     seedData.Seed();
 }