main
 1using gorilla.commons.utility;
 2
 3namespace presentation.windows.common
 4{
 5    public class DefaultMapper : Mapper
 6    {
 7        public Output map_from<Input, Output>(Input item)
 8        {
 9            return AutoMapper.Mapper.Map<Input, Output>(item);
10        }
11    }
12
13    public class DefaultMapper<Input, Output> : Mapper<Input, Output>
14    {
15        public Output map_from(Input item)
16        {
17            return AutoMapper.Mapper.Map<Input, Output>(item);
18        }
19    }
20}