Добавлен префикс таблицам первой структуры базы

This commit is contained in:
Mikhail Kuznetsov
2023-08-10 10:14:41 +10:00
parent f3538fdd5d
commit 39b1333969
38 changed files with 157 additions and 450 deletions

View File

@@ -1,5 +1,5 @@
using AutoMapper;
using PARR.DAL.Models;
using PARR.DAL.Models.V1;
namespace PARR.API.MappingProfiles
{
@@ -7,7 +7,7 @@ namespace PARR.API.MappingProfiles
{
public DomainToDomainProfile()
{
CreateMap<Job, Job>();
CreateMap<V1_Job, V1_Job>();
}
}
}