Himall商城Configuration、ShopShipperProfile

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using AutoMapper;

namespace Himall.Application.Mappers.Profiles
{
    public class ShopShipperProfile : Profile
    {
        protected override void Configure()
        {
            base.Configure();

            CreateMap();
            CreateMap();

        }
    }
}

using AutoMapper;
using System.Web;
using System.Collections.Generic;
using System.Collections;

[assembly: PreApplicationStartMethod(typeof(Himall.Application.Configuration), "InitConfiguration")]
namespace Himall.Application
{
    public static class Configuration
    {
       

你可能感兴趣的:(himall商城,java,spring,mybatis)