Beispiel #1
0
 public EffectsController(GuildManagerContext context)
 {
     _context = context;
 }
Beispiel #2
0
 public ArmorContext(GuildManagerContext context)
 {
     _context = context;
 }
Beispiel #3
0
 public ArmorContext(IServiceProvider service)
 {
     _context = service.GetService <GuildManagerContext>();
 }
 public MonsterContext(GuildManagerContext context)
 {
     _context = context;
 }
Beispiel #5
0
 public ZoneContext(GuildManagerContext context)
 {
     _context = context;
 }
Beispiel #6
0
 public WeaponContext(GuildManagerContext context)
 {
     _context = context;
 }
Beispiel #7
0
        // This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
        public void Configure(IApplicationBuilder app, IHostingEnvironment env, ILoggerFactory loggerFactory, GuildManagerContext context)
        {
            loggerFactory.AddConsole(Configuration.GetSection("Logging"));
            loggerFactory.AddDebug();

            app.UseMvc();
        }
 public WeaponsController(GuildManagerContext context)
 {
     _context = context;
 }
 public ItemsController(GuildManagerContext context)
 {
     _context = context;
 }
Beispiel #10
0
 public SkillContext(GuildManagerContext context)
 {
     _context = context;
 }