namespace zero.Mapper; public abstract class ZeroMapperProfile : IMapperProfile { /// public abstract void Configure(IZeroMapper mapper); } public interface IMapperProfile { /// /// Configure maps for this profile /// void Configure(IZeroMapper mapper); }