public class SingleLineEditFactory : IMapperFactory
public bool CanGetMapper(Type type)
return typeof(Web.SingleLineEdit).IsAssignableFrom(type);
public MapperInformation GetMapperInformation(Type type)
return new MapperInformation(
id: NamingConventions.ToClientName(type.FullName),
mapper: new SingleLineEditMapper(type),
outType: typeof(DTO.SingleLineEdit));