Exemple #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, WebGameContext db)
        {
            if (env.IsDevelopment())
            {
                app.UseDeveloperExceptionPage();
            }

            app.UseGraphiQl();
            app.UseMvc();
            //db.EnsureCreated();
        }
Exemple #2
0
 public CityRepository(WebGameContext db)
 {
     _db = db;
 }
Exemple #3
0
 public PlanetRepository(WebGameContext db)
 {
     _db = db;
 }
Exemple #4
0
 public CountryRepository(WebGameContext db)
 {
     _db = db;
 }