Esempio n. 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)
        {
            if (env.IsDevelopment())
            {
                app.UseDeveloperExceptionPage();
            }
            else
            {
                app.UseHsts();
            }

            app.UseHttpsRedirection();
            app.UseMvc();

            MovData.Initialize(app);
        }
Esempio n. 2
0
 public Item(string name, Rectangle size)
 {
     this.name = name;
     this.size = size;
     movData   = new MovData();
 }