16 lines
432 B
C#
16 lines
432 B
C#
using System;
|
|
using System.Linq;
|
|
using AICore.Context.Entry;
|
|
using BS.Shared.DataContracts;
|
|
|
|
namespace AICore.Context.EntryMapper.Detail
|
|
{
|
|
internal class SupportConceptContextEntryMapper : BaseContextEntryMapper<SupportConceptDC, SupportConceptDetailContextEntry>
|
|
{
|
|
public override void MergeWithObject(SupportConceptDC pObject, SupportConceptDetailContextEntry pContext)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|