using Entities; using Model; namespace EntityMapper { public static class RunePageMapper { public static RunePageEntity ToEntity(this RunePage item) { throw new NotImplementedException(); } public static RunePage ToModel(this RunePageEntity entity) { throw new NotImplementedException(); } } }