Пример #1
0
 public TenisController(TenisDbContext context)
 {
     this.context = context;
 }
Пример #2
0
 public FieldsService(TenisDbContext context)
 {
     this.context = context;
 }
Пример #3
0
        // This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
        public void Configure(IApplicationBuilder app, IWebHostEnvironment env, TenisDbContext context)
        {
            if (env.IsDevelopment())
            {
                app.UseDeveloperExceptionPage();
            }
            else
            {
                app.UseExceptionHandler("/Home/Error");
                // 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.UseHttpsRedirection();
            app.UseStaticFiles();

            app.UseRouting();

            app.UseAuthorization();

            app.UseEndpoints(endpoints =>
            {
                endpoints.MapControllerRoute(
                    name: "default",
                    pattern: "{controller=Home}/{action=Index}/{id?}");
            });

            var igrac1 = new Igrac
            {
                Godine = 33,
                Ime    = "Novak Djokovic",
                Rang   = 1,
                Slika  = "https://www.gstatic.com/tv/thumb/persons/633923/633923_v9_ba.jpg"
            };

            var igrac2 = new Igrac
            {
                Godine = 35,
                Ime    = "Rafael Nadal",
                Rang   = 2,
                Slika  = "https://www.tennisworldusa.org/imgb/93582/rafael-nadal-i-had-injuries-but-i-never-lost-motivation-.jpg"
            };

            context.Igraci.Add(igrac1);
            context.Igraci.Add(igrac2);

            var mec1 = new Mec
            {
                Igrac1   = igrac1,
                Igrac2   = igrac2,
                Lokacija = "asd"
            };
            var mec2 = new Mec
            {
                Igrac1   = igrac1,
                Igrac2   = igrac2,
                Lokacija = "123"
            };

            context.Mecevi.Add(mec1);
            context.Mecevi.Add(mec2);

            context.SaveChanges();
        }
Пример #4
0
 public GamesService(TenisDbContext context, IUsersService userService)
 {
     this.context     = context;
     this.userService = userService;
 }