示例#1
0
 public RefreshRequestController(EnvironmentRefreshContext context)
 {
     _context = context;
 }
示例#2
0
 // This method gets called by the runtime. Use this method to add services to the container.
 public void ConfigureServices(IServiceCollection services)
 {
     services.AddDbContext <EnvironmentRefreshContext>(opt => opt.UseInMemoryDatabase());
     EnvironmentRefreshContext.Initialize();
     services.AddMvc();
 }
示例#3
0
 public ConfigController(EnvironmentRefreshContext context)
 {
     _context = context;
 }