Clean up and reorganize using/import statements across the solution. Remove unnecessary DTO imports from Application and Infrastructure layers, and ensure Contracts DTOs are only referenced in API and BlazorWebApp layers. No business logic is changed; these updates improve code organization, reduce coupling, and clarify architectural separation between layers.
15 lines
308 B
C#
15 lines
308 B
C#
using AutoMapper;
|
|
using DbFirst.Contracts.Catalogs;
|
|
using DbFirst.Domain.Entities;
|
|
|
|
namespace DbFirst.Application.Catalogs;
|
|
|
|
public class CatalogProfile : Profile
|
|
{
|
|
public CatalogProfile()
|
|
{
|
|
CreateMap<VwmyCatalog, CatalogReadDto>();
|
|
CreateMap<CatalogWriteDto, VwmyCatalog>();
|
|
}
|
|
}
|