using Entities; using Model; namespace EntityMapper { public static class RuneMapper { public static RuneEntity ToEntity(this Rune item) { throw new NotImplementedException(); } public static Rune ToModel(this RuneEntity entity) { throw new NotImplementedException(); } } }