main
1using gorilla.utility;
2using utility;
3
4namespace solidware.financials.windows.ui.bootstrappers
5{
6 public class DefaultMapper : Mapper
7 {
8 public Output map_from<Input, Output>(Input item)
9 {
10 //return AutoMapper.Mapper.Map<Input, Output>(item);
11 return MapperRegistery.Map<Input, Output>(item);
12 }
13 }
14}