示例#1
0
 public static AppBootProgram RegisterAutoMappe(this AppBootProgram app)
 {
     MapperProvider.SetMapper(new AutoMapperMapper());
     if (!app.MapperCollection.Any())
     {
         return(app);
     }
     MapperProvider.Current.Initialize(app.MapperCollection);
     return(app);
 }