35 lines
937 B
C#
35 lines
937 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using AutoMapper;
|
|
using xAiModels.Models.Dtos;
|
|
using xAiModels.Models.Entities;
|
|
using xIdentityService.Interfaces;
|
|
|
|
namespace xAiModels.Configurations.Entities
|
|
{
|
|
public class XAiConversationMappingAction : IMappingAction<XAiConversation, XAiConversationDto>
|
|
{
|
|
private readonly IXIdentityProvider identityProvider;
|
|
|
|
public XAiConversationMappingAction(
|
|
IXIdentityProvider identityProvider
|
|
)
|
|
{
|
|
this.identityProvider = identityProvider;
|
|
}
|
|
|
|
public void Process(
|
|
XAiConversation source,
|
|
XAiConversationDto destination,
|
|
ResolutionContext context
|
|
)
|
|
{
|
|
//
|
|
// Retrieve Owner ...
|
|
// Retrieve Project Info ...
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
} |