示例#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;
 }