Refactor controllers and views for MediatR integration

Updated several C# controllers to use the new
`DigitalData.Core.Abstraction.Application.DTO` namespace
and removed references to `DigitalData.Core.DTO`. Added
`[Obsolete("Use MediatR")]` attributes to indicate a shift
towards MediatR for request handling. Improved error
handling and code organization in key methods. Updated
Razor view files to reflect namespace changes for
consistency across the application.
This commit is contained in:
2025-06-27 13:24:12 +02:00
parent e628309734
commit fcbe956095
7 changed files with 69 additions and 63 deletions

View File

@@ -1,5 +1,6 @@
@using EnvelopeGenerator.CommonServices;
@using static EnvelopeGenerator.CommonServices.Constants;
@using EnvelopeGenerator.Domain;
@using static EnvelopeGenerator.Domain.Constants;
@{
ViewData["Title"] = "Debug";
}