using System; using ln.objects.catalog; namespace ln.types.odb.ng { public interface IODBMapping { ODBEntity MapValue(Mapper mapper, object value); object UnmapValue(Mapper mapper, ODBEntity oval); } }