using DocumentServiceAPI.Application.ProjectInfo.ViewMode;
|
using DocumentServiceAPI.Application.UserAndLogin.ViewMode;
|
using DocumentServiceAPI.Model.cyDocumentModel;
|
using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace DocumentServiceAPI.Application.ProjectInfo.dto
|
{
|
public class Mapper : IRegister
|
{
|
public void Register(TypeAdapterConfig config)
|
{
|
config.ForType<Document_ProjectInfo, DocumentProjectInfoDTO>();
|
config.ForType<DocumentProjectInfoDTO, Document_ProjectInfo>();
|
}
|
}
|
}
|