Пример #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,
                              SimpleBettingContext simpleBettingContext)
        {
            if (env.IsDevelopment())
            {
                app.UseDeveloperExceptionPage();
            }

            app.UseMvc();
        }
Пример #2
0
 public TicketRepository(SimpleBettingContext context) :
     base(context)
 {
     _context = context;
 }
Пример #3
0
 public MatchRepository(SimpleBettingContext context) : base(context)
 {
     _context = context;
 }
Пример #4
0
 public TransactionRepository(SimpleBettingContext context) : base(context)
 {
     _context = context;
 }