コード例 #1
0
ファイル: MapperFixture.cs プロジェクト: sevgin0954/BMWStore
 public MapperFixture()
 {
     RegisterAutoMapperMappings.RegisterMappings(
         typeof(ErrorViewModel).GetTypeInfo().Assembly,
         typeof(User).GetTypeInfo().Assembly,
         typeof(CarServiceModel).Assembly);
 }
コード例 #2
0
        public void RegisterTest()
        {
            // Arrange
            // Act
            RegisterAutoMapperMappings.Register();

            // Assert
        }
コード例 #3
0
        // This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
        public void Configure(IApplicationBuilder app, IHostingEnvironment env)
        {
            RegisterAutoMapperMappings.RegisterMappings(
                typeof(ErrorViewModel).GetTypeInfo().Assembly,
                typeof(User).GetTypeInfo().Assembly,
                typeof(CarServiceModel).Assembly);

            if (env.IsDevelopment())
            {
                app.UseDeveloperExceptionPage();
                app.UseDatabaseErrorPage();
            }
            else
            {
                app.UseExceptionHandler("/Home/Error");
                // The default HSTS value is 30 days. You may want to change this for production scenarios, see https://aka.ms/aspnetcore-hsts.
                app.UseHsts();
            }

            app.UseHttpsRedirection();
            app.UseStaticFiles();
            app.UseCookiePolicy();

            app.UseResponseXFrame();

            app.UseAuthentication();

            app.UseMvc(routes =>
            {
                routes.MapRoute(
                    name: "paginationIndex",
                    template: "{area:exists}/{controller}/{action=Index}/{filter?}/{name?}/{pageNumber?}"
                    );

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

                routes.MapRoute(
                    name: "areas",
                    template: "{area:exists}/{controller=Home}/{action=Index}/{id?}"
                    );
            });
        }
コード例 #4
0
 public AutoFixtureTestBase()
 {
     RegisterAutoMapperMappings.Register();
 }