using Entities; using Model; namespace EntityMapper { public static class SkinMapper { public static SkinEntity ToEntity(this Skin item) { throw new NotImplementedException(); } public static Skin ToModel(this SkinEntity entity) { throw new NotImplementedException(); } } }