refactor(Extension): move to Application.Extensions and remove the project.

- update references
This commit is contained in:
Developer 02
2025-08-28 18:46:55 +02:00
parent a343312f97
commit 0b879b2f5b
23 changed files with 19 additions and 55 deletions

View File

@@ -1,6 +1,5 @@
using AutoMapper;
using EnvelopeGenerator.Application.Histories.Commands;
using EnvelopeGenerator.Application.Histories.Queries.Read;
using EnvelopeGenerator.Domain.Entities;
namespace EnvelopeGenerator.Application.Histories;
@@ -15,7 +14,6 @@ public class MappingProfile: Profile
/// </summary>
public MappingProfile()
{
CreateMap<EnvelopeHistory, ReadHistoryResponse>();
CreateMap<CreateHistoryCommand, EnvelopeHistory>();
}
}