1234567891011121314151617181920212223 |
- using AutoMapper;
- using IMCS.CCS.Dto;
- using IMCS.CCS.Entitys;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace IMCS.CCS.Config
- {
- public class AutoMapperConfig : Profile
- {
- public AutoMapperConfig()
- {
- CreateMap<Tasks, TasksProjectDto>();
- CreateMap<Tasks, Tasks>();
- CreateMap<Project, Project>();
-
- }
- }
- }
|