Ejemplo n.º 1
0
        private static Bogus.Faker <SocialListPerson> GetSocialListPersonFaker()
        {
            var fakerPerson = PeopleSeedData.GetPersonFaker();

            return(new Bogus.Faker <SocialListPerson>()
                   .RuleFor(socialListPerson => socialListPerson.Person, faker => fakerPerson));
        }
Ejemplo n.º 2
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)
        {
            loggerFactory.AddConsole(Configuration.GetSection("Logging"));
            loggerFactory.AddDebug();

            app.UseApplicationInsightsRequestTelemetry();

            if (env.IsDevelopment())
            {
                app.UseDeveloperExceptionPage();
                app.UseDatabaseErrorPage();
                app.UseBrowserLink();
            }
            else
            {
                app.UseExceptionHandler("/Home/Error");
            }

            app.UseApplicationInsightsExceptionTelemetry();

            app.UseStaticFiles();

            app.UseIdentity();

            // Add external authentication middleware below. To configure them please see http://go.microsoft.com/fwlink/?LinkID=532715

            app.UseMvc(routes =>
            {
                routes.MapRoute(
                    name: "default",
                    template: "{controller=Home}/{action=Index}/{id?}");
            });

            JobSeedData.Initialize(app.ApplicationServices);
            EducationSeedData.Initialize(app.ApplicationServices);
            PeopleSeedData.Initialize(app.ApplicationServices);
        }