36 lines
960 B
C#
36 lines
960 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 XAiProjectMappingAction : IMappingAction<XAiProject, XAiProjectDto>
|
|
{
|
|
private readonly IXIdentityProvider identityProvider;
|
|
|
|
public XAiProjectMappingAction(
|
|
IXIdentityProvider identityProvider
|
|
)
|
|
{
|
|
this.identityProvider = identityProvider;
|
|
}
|
|
|
|
public void Process(
|
|
XAiProject source,
|
|
XAiProjectDto destination,
|
|
ResolutionContext context
|
|
)
|
|
{
|
|
//
|
|
// Retrieve Owner ...
|
|
// Retrieve Title Resources ...
|
|
// Retrieve Description Resources ...
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
} |