diff --git a/EnvelopeGenerator.Application/DependencyInjection.cs b/EnvelopeGenerator.Application/DependencyInjection.cs index bd7d23e3..59ee94ee 100644 --- a/EnvelopeGenerator.Application/DependencyInjection.cs +++ b/EnvelopeGenerator.Application/DependencyInjection.cs @@ -5,7 +5,7 @@ using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.DependencyInjection.Extensions; using DigitalData.Core.Client; using QRCoder; -using EnvelopeGenerator.Application.Contracts.Services; +using EnvelopeGenerator.Application.Interfaces.Services; using System.Reflection; using EnvelopeGenerator.Application.EnvelopeReceivers.Commands; diff --git a/EnvelopeGenerator.Application/EmailTemplates/Queries/Read/ReadEmailTemplateQueryHandler.cs b/EnvelopeGenerator.Application/EmailTemplates/Queries/Read/ReadEmailTemplateQueryHandler.cs index 84478ee1..13acefb3 100644 --- a/EnvelopeGenerator.Application/EmailTemplates/Queries/Read/ReadEmailTemplateQueryHandler.cs +++ b/EnvelopeGenerator.Application/EmailTemplates/Queries/Read/ReadEmailTemplateQueryHandler.cs @@ -1,5 +1,5 @@ using AutoMapper; -using EnvelopeGenerator.Application.Contracts.Repositories; +using EnvelopeGenerator.Application.Interfaces.Repositories; using EnvelopeGenerator.Domain; using MediatR; diff --git a/EnvelopeGenerator.Application/EnvelopeReceivers/Commands/CreateEnvelopeReceiverCommandHandler.cs b/EnvelopeGenerator.Application/EnvelopeReceivers/Commands/CreateEnvelopeReceiverCommandHandler.cs index c7118ce8..c599c2ce 100644 --- a/EnvelopeGenerator.Application/EnvelopeReceivers/Commands/CreateEnvelopeReceiverCommandHandler.cs +++ b/EnvelopeGenerator.Application/EnvelopeReceivers/Commands/CreateEnvelopeReceiverCommandHandler.cs @@ -1,5 +1,5 @@ using AutoMapper; -using EnvelopeGenerator.Application.Contracts.SQLExecutor; +using EnvelopeGenerator.Application.Interfaces.SQLExecutor; using EnvelopeGenerator.Application.Dto.Receiver; using EnvelopeGenerator.Domain.Entities; using MediatR; diff --git a/EnvelopeGenerator.Application/Envelopes/Commands/CreateEnvelopeCommandHandler.cs b/EnvelopeGenerator.Application/Envelopes/Commands/CreateEnvelopeCommandHandler.cs index db0117ac..9844b4e7 100644 --- a/EnvelopeGenerator.Application/Envelopes/Commands/CreateEnvelopeCommandHandler.cs +++ b/EnvelopeGenerator.Application/Envelopes/Commands/CreateEnvelopeCommandHandler.cs @@ -1,5 +1,5 @@ using AutoMapper; -using EnvelopeGenerator.Application.Contracts.SQLExecutor; +using EnvelopeGenerator.Application.Interfaces.SQLExecutor; using EnvelopeGenerator.Application.Dto; using MediatR; diff --git a/EnvelopeGenerator.Application/Histories/Queries/Read/ReadHistoryQueryHandler.cs b/EnvelopeGenerator.Application/Histories/Queries/Read/ReadHistoryQueryHandler.cs index 91354492..287ab40a 100644 --- a/EnvelopeGenerator.Application/Histories/Queries/Read/ReadHistoryQueryHandler.cs +++ b/EnvelopeGenerator.Application/Histories/Queries/Read/ReadHistoryQueryHandler.cs @@ -1,5 +1,5 @@ using AutoMapper; -using EnvelopeGenerator.Application.Contracts.Repositories; +using EnvelopeGenerator.Application.Interfaces.Repositories; using EnvelopeGenerator.Application.Exceptions; using MediatR; diff --git a/EnvelopeGenerator.Application/Contracts/Repositories/IConfigRepository.cs b/EnvelopeGenerator.Application/Interfaces/Repositories/IConfigRepository.cs similarity index 84% rename from EnvelopeGenerator.Application/Contracts/Repositories/IConfigRepository.cs rename to EnvelopeGenerator.Application/Interfaces/Repositories/IConfigRepository.cs index f2309a98..d3ee4ec1 100644 --- a/EnvelopeGenerator.Application/Contracts/Repositories/IConfigRepository.cs +++ b/EnvelopeGenerator.Application/Interfaces/Repositories/IConfigRepository.cs @@ -1,7 +1,7 @@ using DigitalData.Core.Abstraction.Application.Repository; using EnvelopeGenerator.Domain.Entities; -namespace EnvelopeGenerator.Application.Contracts.Repositories; +namespace EnvelopeGenerator.Application.Interfaces.Repositories; /// /// diff --git a/EnvelopeGenerator.Application/Contracts/Repositories/IDocumentReceiverElementRepository.cs b/EnvelopeGenerator.Application/Interfaces/Repositories/IDocumentReceiverElementRepository.cs similarity index 80% rename from EnvelopeGenerator.Application/Contracts/Repositories/IDocumentReceiverElementRepository.cs rename to EnvelopeGenerator.Application/Interfaces/Repositories/IDocumentReceiverElementRepository.cs index 607a8c89..797fc5ae 100644 --- a/EnvelopeGenerator.Application/Contracts/Repositories/IDocumentReceiverElementRepository.cs +++ b/EnvelopeGenerator.Application/Interfaces/Repositories/IDocumentReceiverElementRepository.cs @@ -1,7 +1,7 @@ using DigitalData.Core.Abstraction.Application.Repository; using EnvelopeGenerator.Domain.Entities; -namespace EnvelopeGenerator.Application.Contracts.Repositories; +namespace EnvelopeGenerator.Application.Interfaces.Repositories; /// /// /// diff --git a/EnvelopeGenerator.Application/Contracts/Repositories/IDocumentStatusRepository.cs b/EnvelopeGenerator.Application/Interfaces/Repositories/IDocumentStatusRepository.cs similarity index 79% rename from EnvelopeGenerator.Application/Contracts/Repositories/IDocumentStatusRepository.cs rename to EnvelopeGenerator.Application/Interfaces/Repositories/IDocumentStatusRepository.cs index d563bbf1..5bf38587 100644 --- a/EnvelopeGenerator.Application/Contracts/Repositories/IDocumentStatusRepository.cs +++ b/EnvelopeGenerator.Application/Interfaces/Repositories/IDocumentStatusRepository.cs @@ -1,7 +1,7 @@ using DigitalData.Core.Abstraction.Application.Repository; using EnvelopeGenerator.Domain.Entities; -namespace EnvelopeGenerator.Application.Contracts.Repositories; +namespace EnvelopeGenerator.Application.Interfaces.Repositories; /// /// diff --git a/EnvelopeGenerator.Application/Contracts/Repositories/IEmailTemplateRepository.cs b/EnvelopeGenerator.Application/Interfaces/Repositories/IEmailTemplateRepository.cs similarity index 87% rename from EnvelopeGenerator.Application/Contracts/Repositories/IEmailTemplateRepository.cs rename to EnvelopeGenerator.Application/Interfaces/Repositories/IEmailTemplateRepository.cs index 73749745..b2b2e750 100644 --- a/EnvelopeGenerator.Application/Contracts/Repositories/IEmailTemplateRepository.cs +++ b/EnvelopeGenerator.Application/Interfaces/Repositories/IEmailTemplateRepository.cs @@ -2,7 +2,7 @@ using EnvelopeGenerator.Domain.Entities; using static EnvelopeGenerator.Domain.Constants; -namespace EnvelopeGenerator.Application.Contracts.Repositories; +namespace EnvelopeGenerator.Application.Interfaces.Repositories; /// /// diff --git a/EnvelopeGenerator.Application/Contracts/Repositories/IEnvelopeDocumentRepository.cs b/EnvelopeGenerator.Application/Interfaces/Repositories/IEnvelopeDocumentRepository.cs similarity index 79% rename from EnvelopeGenerator.Application/Contracts/Repositories/IEnvelopeDocumentRepository.cs rename to EnvelopeGenerator.Application/Interfaces/Repositories/IEnvelopeDocumentRepository.cs index b999b4b5..a1b5f2bc 100644 --- a/EnvelopeGenerator.Application/Contracts/Repositories/IEnvelopeDocumentRepository.cs +++ b/EnvelopeGenerator.Application/Interfaces/Repositories/IEnvelopeDocumentRepository.cs @@ -1,7 +1,7 @@ using DigitalData.Core.Abstraction.Application.Repository; using EnvelopeGenerator.Domain.Entities; -namespace EnvelopeGenerator.Application.Contracts.Repositories; +namespace EnvelopeGenerator.Application.Interfaces.Repositories; /// /// diff --git a/EnvelopeGenerator.Application/Contracts/Repositories/IEnvelopeHistoryRepository.cs b/EnvelopeGenerator.Application/Interfaces/Repositories/IEnvelopeHistoryRepository.cs similarity index 94% rename from EnvelopeGenerator.Application/Contracts/Repositories/IEnvelopeHistoryRepository.cs rename to EnvelopeGenerator.Application/Interfaces/Repositories/IEnvelopeHistoryRepository.cs index 7e8c7b93..8c744d3e 100644 --- a/EnvelopeGenerator.Application/Contracts/Repositories/IEnvelopeHistoryRepository.cs +++ b/EnvelopeGenerator.Application/Interfaces/Repositories/IEnvelopeHistoryRepository.cs @@ -2,7 +2,7 @@ using EnvelopeGenerator.Domain; using EnvelopeGenerator.Domain.Entities; -namespace EnvelopeGenerator.Application.Contracts.Repositories; +namespace EnvelopeGenerator.Application.Interfaces.Repositories; /// /// diff --git a/EnvelopeGenerator.Application/Contracts/Repositories/IEnvelopeReceiverReadOnlyRepository.cs b/EnvelopeGenerator.Application/Interfaces/Repositories/IEnvelopeReceiverReadOnlyRepository.cs similarity index 80% rename from EnvelopeGenerator.Application/Contracts/Repositories/IEnvelopeReceiverReadOnlyRepository.cs rename to EnvelopeGenerator.Application/Interfaces/Repositories/IEnvelopeReceiverReadOnlyRepository.cs index e13accff..cf91c808 100644 --- a/EnvelopeGenerator.Application/Contracts/Repositories/IEnvelopeReceiverReadOnlyRepository.cs +++ b/EnvelopeGenerator.Application/Interfaces/Repositories/IEnvelopeReceiverReadOnlyRepository.cs @@ -1,7 +1,7 @@ using DigitalData.Core.Abstraction.Application.Repository; using EnvelopeGenerator.Domain.Entities; -namespace EnvelopeGenerator.Application.Contracts.Repositories; +namespace EnvelopeGenerator.Application.Interfaces.Repositories; /// /// diff --git a/EnvelopeGenerator.Application/Contracts/Repositories/IEnvelopeReceiverRepository.cs b/EnvelopeGenerator.Application/Interfaces/Repositories/IEnvelopeReceiverRepository.cs similarity index 98% rename from EnvelopeGenerator.Application/Contracts/Repositories/IEnvelopeReceiverRepository.cs rename to EnvelopeGenerator.Application/Interfaces/Repositories/IEnvelopeReceiverRepository.cs index c822f1fa..46f92aac 100644 --- a/EnvelopeGenerator.Application/Contracts/Repositories/IEnvelopeReceiverRepository.cs +++ b/EnvelopeGenerator.Application/Interfaces/Repositories/IEnvelopeReceiverRepository.cs @@ -1,7 +1,7 @@ using DigitalData.Core.Abstraction.Application.Repository; using EnvelopeGenerator.Domain.Entities; -namespace EnvelopeGenerator.Application.Contracts.Repositories; +namespace EnvelopeGenerator.Application.Interfaces.Repositories; /// /// diff --git a/EnvelopeGenerator.Application/Contracts/Repositories/IEnvelopeRepository.cs b/EnvelopeGenerator.Application/Interfaces/Repositories/IEnvelopeRepository.cs similarity index 95% rename from EnvelopeGenerator.Application/Contracts/Repositories/IEnvelopeRepository.cs rename to EnvelopeGenerator.Application/Interfaces/Repositories/IEnvelopeRepository.cs index 504d63f4..06be0feb 100644 --- a/EnvelopeGenerator.Application/Contracts/Repositories/IEnvelopeRepository.cs +++ b/EnvelopeGenerator.Application/Interfaces/Repositories/IEnvelopeRepository.cs @@ -1,7 +1,7 @@ using DigitalData.Core.Abstraction.Application.Repository; using EnvelopeGenerator.Domain.Entities; -namespace EnvelopeGenerator.Application.Contracts.Repositories; +namespace EnvelopeGenerator.Application.Interfaces.Repositories; /// /// diff --git a/EnvelopeGenerator.Application/Contracts/Repositories/IEnvelopeTypeRepository.cs b/EnvelopeGenerator.Application/Interfaces/Repositories/IEnvelopeTypeRepository.cs similarity index 79% rename from EnvelopeGenerator.Application/Contracts/Repositories/IEnvelopeTypeRepository.cs rename to EnvelopeGenerator.Application/Interfaces/Repositories/IEnvelopeTypeRepository.cs index c61e861e..3170cfb8 100644 --- a/EnvelopeGenerator.Application/Contracts/Repositories/IEnvelopeTypeRepository.cs +++ b/EnvelopeGenerator.Application/Interfaces/Repositories/IEnvelopeTypeRepository.cs @@ -1,7 +1,7 @@ using DigitalData.Core.Abstraction.Application.Repository; using EnvelopeGenerator.Domain.Entities; -namespace EnvelopeGenerator.Application.Contracts.Repositories; +namespace EnvelopeGenerator.Application.Interfaces.Repositories; /// /// diff --git a/EnvelopeGenerator.Application/Contracts/Repositories/IReceiverRepository.cs b/EnvelopeGenerator.Application/Interfaces/Repositories/IReceiverRepository.cs similarity index 88% rename from EnvelopeGenerator.Application/Contracts/Repositories/IReceiverRepository.cs rename to EnvelopeGenerator.Application/Interfaces/Repositories/IReceiverRepository.cs index e0e4968c..b2b8db0a 100644 --- a/EnvelopeGenerator.Application/Contracts/Repositories/IReceiverRepository.cs +++ b/EnvelopeGenerator.Application/Interfaces/Repositories/IReceiverRepository.cs @@ -1,7 +1,7 @@ using DigitalData.Core.Abstraction.Application.Repository; using EnvelopeGenerator.Domain.Entities; -namespace EnvelopeGenerator.Application.Contracts.Repositories; +namespace EnvelopeGenerator.Application.Interfaces.Repositories; /// /// diff --git a/EnvelopeGenerator.Application/Contracts/SQLExecutor/IDocumentExecutor.cs b/EnvelopeGenerator.Application/Interfaces/SQLExecutor/IDocumentExecutor.cs similarity index 87% rename from EnvelopeGenerator.Application/Contracts/SQLExecutor/IDocumentExecutor.cs rename to EnvelopeGenerator.Application/Interfaces/SQLExecutor/IDocumentExecutor.cs index e3163f5e..3050cbaf 100644 --- a/EnvelopeGenerator.Application/Contracts/SQLExecutor/IDocumentExecutor.cs +++ b/EnvelopeGenerator.Application/Interfaces/SQLExecutor/IDocumentExecutor.cs @@ -1,6 +1,6 @@ using EnvelopeGenerator.Domain.Entities; -namespace EnvelopeGenerator.Application.Contracts.SQLExecutor; +namespace EnvelopeGenerator.Application.Interfaces.SQLExecutor; /// /// diff --git a/EnvelopeGenerator.Application/Contracts/SQLExecutor/IEnvelopeExecutor.cs b/EnvelopeGenerator.Application/Interfaces/SQLExecutor/IEnvelopeExecutor.cs similarity index 90% rename from EnvelopeGenerator.Application/Contracts/SQLExecutor/IEnvelopeExecutor.cs rename to EnvelopeGenerator.Application/Interfaces/SQLExecutor/IEnvelopeExecutor.cs index 25c5d29c..8b8e09e4 100644 --- a/EnvelopeGenerator.Application/Contracts/SQLExecutor/IEnvelopeExecutor.cs +++ b/EnvelopeGenerator.Application/Interfaces/SQLExecutor/IEnvelopeExecutor.cs @@ -1,7 +1,7 @@ using Dapper; using EnvelopeGenerator.Domain.Entities; -namespace EnvelopeGenerator.Application.Contracts.SQLExecutor; +namespace EnvelopeGenerator.Application.Interfaces.SQLExecutor; /// /// diff --git a/EnvelopeGenerator.Application/Contracts/SQLExecutor/IEnvelopeReceiverExecutor.cs b/EnvelopeGenerator.Application/Interfaces/SQLExecutor/IEnvelopeReceiverExecutor.cs similarity index 90% rename from EnvelopeGenerator.Application/Contracts/SQLExecutor/IEnvelopeReceiverExecutor.cs rename to EnvelopeGenerator.Application/Interfaces/SQLExecutor/IEnvelopeReceiverExecutor.cs index 71cd8faa..e77f3ccb 100644 --- a/EnvelopeGenerator.Application/Contracts/SQLExecutor/IEnvelopeReceiverExecutor.cs +++ b/EnvelopeGenerator.Application/Interfaces/SQLExecutor/IEnvelopeReceiverExecutor.cs @@ -1,6 +1,6 @@ using EnvelopeGenerator.Domain.Entities; -namespace EnvelopeGenerator.Application.Contracts.SQLExecutor; +namespace EnvelopeGenerator.Application.Interfaces.SQLExecutor; /// /// diff --git a/EnvelopeGenerator.Application/Contracts/SQLExecutor/IQuery.cs b/EnvelopeGenerator.Application/Interfaces/SQLExecutor/IQuery.cs similarity index 97% rename from EnvelopeGenerator.Application/Contracts/SQLExecutor/IQuery.cs rename to EnvelopeGenerator.Application/Interfaces/SQLExecutor/IQuery.cs index c0be3674..69aada9a 100644 --- a/EnvelopeGenerator.Application/Contracts/SQLExecutor/IQuery.cs +++ b/EnvelopeGenerator.Application/Interfaces/SQLExecutor/IQuery.cs @@ -1,4 +1,4 @@ -namespace EnvelopeGenerator.Application.Contracts.SQLExecutor; +namespace EnvelopeGenerator.Application.Interfaces.SQLExecutor; /// /// Provides methods for executing common queries on a given entity type. diff --git a/EnvelopeGenerator.Application/Contracts/SQLExecutor/ISQL.cs b/EnvelopeGenerator.Application/Interfaces/SQLExecutor/ISQL.cs similarity index 86% rename from EnvelopeGenerator.Application/Contracts/SQLExecutor/ISQL.cs rename to EnvelopeGenerator.Application/Interfaces/SQLExecutor/ISQL.cs index 00c0cd8d..8918c714 100644 --- a/EnvelopeGenerator.Application/Contracts/SQLExecutor/ISQL.cs +++ b/EnvelopeGenerator.Application/Interfaces/SQLExecutor/ISQL.cs @@ -1,4 +1,4 @@ -namespace EnvelopeGenerator.Application.Contracts.SQLExecutor; +namespace EnvelopeGenerator.Application.Interfaces.SQLExecutor; /// /// Represents a raw SQL query contract. diff --git a/EnvelopeGenerator.Application/Contracts/SQLExecutor/ISQLExecutor.cs b/EnvelopeGenerator.Application/Interfaces/SQLExecutor/ISQLExecutor.cs similarity index 96% rename from EnvelopeGenerator.Application/Contracts/SQLExecutor/ISQLExecutor.cs rename to EnvelopeGenerator.Application/Interfaces/SQLExecutor/ISQLExecutor.cs index 0c6ea474..d050c7d4 100644 --- a/EnvelopeGenerator.Application/Contracts/SQLExecutor/ISQLExecutor.cs +++ b/EnvelopeGenerator.Application/Interfaces/SQLExecutor/ISQLExecutor.cs @@ -1,4 +1,4 @@ -namespace EnvelopeGenerator.Application.Contracts.SQLExecutor; +namespace EnvelopeGenerator.Application.Interfaces.SQLExecutor; /// /// Defines methods for executing raw SQL queries or custom SQL query classes and returning query executors for further operations. diff --git a/EnvelopeGenerator.Application/Contracts/SQLExecutor/ISQLExecutorBaseEntity.cs b/EnvelopeGenerator.Application/Interfaces/SQLExecutor/ISQLExecutorBaseEntity.cs similarity index 96% rename from EnvelopeGenerator.Application/Contracts/SQLExecutor/ISQLExecutorBaseEntity.cs rename to EnvelopeGenerator.Application/Interfaces/SQLExecutor/ISQLExecutorBaseEntity.cs index afe03e9d..05f0186b 100644 --- a/EnvelopeGenerator.Application/Contracts/SQLExecutor/ISQLExecutorBaseEntity.cs +++ b/EnvelopeGenerator.Application/Interfaces/SQLExecutor/ISQLExecutorBaseEntity.cs @@ -1,6 +1,6 @@ using Dapper; -namespace EnvelopeGenerator.Application.Contracts.SQLExecutor; +namespace EnvelopeGenerator.Application.Interfaces.SQLExecutor; /// /// diff --git a/EnvelopeGenerator.Application/Contracts/Services/IAuthenticator.cs b/EnvelopeGenerator.Application/Interfaces/Services/IAuthenticator.cs similarity index 96% rename from EnvelopeGenerator.Application/Contracts/Services/IAuthenticator.cs rename to EnvelopeGenerator.Application/Interfaces/Services/IAuthenticator.cs index 54f5398b..4ecab6f5 100644 --- a/EnvelopeGenerator.Application/Contracts/Services/IAuthenticator.cs +++ b/EnvelopeGenerator.Application/Interfaces/Services/IAuthenticator.cs @@ -1,6 +1,6 @@ using OtpNet; -namespace EnvelopeGenerator.Application.Contracts.Services; +namespace EnvelopeGenerator.Application.Interfaces.Services; /// /// diff --git a/EnvelopeGenerator.Application/Contracts/Services/IConfigService.cs b/EnvelopeGenerator.Application/Interfaces/Services/IConfigService.cs similarity index 91% rename from EnvelopeGenerator.Application/Contracts/Services/IConfigService.cs rename to EnvelopeGenerator.Application/Interfaces/Services/IConfigService.cs index d8758108..b521305b 100644 --- a/EnvelopeGenerator.Application/Contracts/Services/IConfigService.cs +++ b/EnvelopeGenerator.Application/Interfaces/Services/IConfigService.cs @@ -3,7 +3,7 @@ using DigitalData.Core.Abstraction.Application.DTO; using EnvelopeGenerator.Application.Dto; using EnvelopeGenerator.Domain.Entities; -namespace EnvelopeGenerator.Application.Contracts.Services; +namespace EnvelopeGenerator.Application.Interfaces.Services; /// /// diff --git a/EnvelopeGenerator.Application/Contracts/Services/IDocumentReceiverElementService.cs b/EnvelopeGenerator.Application/Interfaces/Services/IDocumentReceiverElementService.cs similarity index 83% rename from EnvelopeGenerator.Application/Contracts/Services/IDocumentReceiverElementService.cs rename to EnvelopeGenerator.Application/Interfaces/Services/IDocumentReceiverElementService.cs index 2c70e75f..ced97349 100644 --- a/EnvelopeGenerator.Application/Contracts/Services/IDocumentReceiverElementService.cs +++ b/EnvelopeGenerator.Application/Interfaces/Services/IDocumentReceiverElementService.cs @@ -2,7 +2,7 @@ using EnvelopeGenerator.Application.Dto; using EnvelopeGenerator.Domain.Entities; -namespace EnvelopeGenerator.Application.Contracts.Services; +namespace EnvelopeGenerator.Application.Interfaces.Services; /// /// diff --git a/EnvelopeGenerator.Application/Contracts/Services/IDocumentStatusService.cs b/EnvelopeGenerator.Application/Interfaces/Services/IDocumentStatusService.cs similarity index 82% rename from EnvelopeGenerator.Application/Contracts/Services/IDocumentStatusService.cs rename to EnvelopeGenerator.Application/Interfaces/Services/IDocumentStatusService.cs index a476dc89..f314a79a 100644 --- a/EnvelopeGenerator.Application/Contracts/Services/IDocumentStatusService.cs +++ b/EnvelopeGenerator.Application/Interfaces/Services/IDocumentStatusService.cs @@ -1,7 +1,7 @@ using DigitalData.Core.Abstraction.Application; using EnvelopeGenerator.Application.Dto; using EnvelopeGenerator.Domain.Entities; -namespace EnvelopeGenerator.Application.Contracts.Services; +namespace EnvelopeGenerator.Application.Interfaces.Services; /// /// diff --git a/EnvelopeGenerator.Application/Contracts/Services/IEmailTemplateService.cs b/EnvelopeGenerator.Application/Interfaces/Services/IEmailTemplateService.cs similarity index 90% rename from EnvelopeGenerator.Application/Contracts/Services/IEmailTemplateService.cs rename to EnvelopeGenerator.Application/Interfaces/Services/IEmailTemplateService.cs index e0a2f540..546fec3a 100644 --- a/EnvelopeGenerator.Application/Contracts/Services/IEmailTemplateService.cs +++ b/EnvelopeGenerator.Application/Interfaces/Services/IEmailTemplateService.cs @@ -4,7 +4,7 @@ using EnvelopeGenerator.Application.Dto; using EnvelopeGenerator.Domain.Entities; using static EnvelopeGenerator.Domain.Constants; -namespace EnvelopeGenerator.Application.Contracts.Services; +namespace EnvelopeGenerator.Application.Interfaces.Services; /// /// diff --git a/EnvelopeGenerator.Application/Contracts/Services/IEnvelopeDocumentService.cs b/EnvelopeGenerator.Application/Interfaces/Services/IEnvelopeDocumentService.cs similarity index 83% rename from EnvelopeGenerator.Application/Contracts/Services/IEnvelopeDocumentService.cs rename to EnvelopeGenerator.Application/Interfaces/Services/IEnvelopeDocumentService.cs index 6f9443d1..0b7ac7c0 100644 --- a/EnvelopeGenerator.Application/Contracts/Services/IEnvelopeDocumentService.cs +++ b/EnvelopeGenerator.Application/Interfaces/Services/IEnvelopeDocumentService.cs @@ -2,7 +2,7 @@ using EnvelopeGenerator.Application.Dto; using EnvelopeGenerator.Domain.Entities; -namespace EnvelopeGenerator.Application.Contracts.Services; +namespace EnvelopeGenerator.Application.Interfaces.Services; /// /// diff --git a/EnvelopeGenerator.Application/Contracts/Services/IEnvelopeHistoryService.cs b/EnvelopeGenerator.Application/Interfaces/Services/IEnvelopeHistoryService.cs similarity index 97% rename from EnvelopeGenerator.Application/Contracts/Services/IEnvelopeHistoryService.cs rename to EnvelopeGenerator.Application/Interfaces/Services/IEnvelopeHistoryService.cs index 6deda7ba..86d84b38 100644 --- a/EnvelopeGenerator.Application/Contracts/Services/IEnvelopeHistoryService.cs +++ b/EnvelopeGenerator.Application/Interfaces/Services/IEnvelopeHistoryService.cs @@ -5,7 +5,7 @@ using EnvelopeGenerator.Application.Dto.Receiver; using EnvelopeGenerator.Domain.Entities; using static EnvelopeGenerator.Domain.Constants; -namespace EnvelopeGenerator.Application.Contracts.Services; +namespace EnvelopeGenerator.Application.Interfaces.Services; /// /// diff --git a/EnvelopeGenerator.Application/Contracts/Services/IEnvelopeMailService.cs b/EnvelopeGenerator.Application/Interfaces/Services/IEnvelopeMailService.cs similarity index 96% rename from EnvelopeGenerator.Application/Contracts/Services/IEnvelopeMailService.cs rename to EnvelopeGenerator.Application/Interfaces/Services/IEnvelopeMailService.cs index 9a2af3c4..c55785d1 100644 --- a/EnvelopeGenerator.Application/Contracts/Services/IEnvelopeMailService.cs +++ b/EnvelopeGenerator.Application/Interfaces/Services/IEnvelopeMailService.cs @@ -4,7 +4,7 @@ using EnvelopeGenerator.Application.Dto.EnvelopeReceiver; using EnvelopeGenerator.Application.Dto.EnvelopeReceiverReadOnly; using EnvelopeGenerator.Domain; -namespace EnvelopeGenerator.Application.Contracts.Services; +namespace EnvelopeGenerator.Application.Interfaces.Services; /// /// diff --git a/EnvelopeGenerator.Application/Contracts/Services/IEnvelopeReceiverReadOnlyService.cs b/EnvelopeGenerator.Application/Interfaces/Services/IEnvelopeReceiverReadOnlyService.cs similarity index 86% rename from EnvelopeGenerator.Application/Contracts/Services/IEnvelopeReceiverReadOnlyService.cs rename to EnvelopeGenerator.Application/Interfaces/Services/IEnvelopeReceiverReadOnlyService.cs index 3c080562..3bc19ceb 100644 --- a/EnvelopeGenerator.Application/Contracts/Services/IEnvelopeReceiverReadOnlyService.cs +++ b/EnvelopeGenerator.Application/Interfaces/Services/IEnvelopeReceiverReadOnlyService.cs @@ -2,7 +2,7 @@ using EnvelopeGenerator.Application.Dto.EnvelopeReceiverReadOnly; using EnvelopeGenerator.Domain.Entities; -namespace EnvelopeGenerator.Application.Contracts.Services; +namespace EnvelopeGenerator.Application.Interfaces.Services; /// /// diff --git a/EnvelopeGenerator.Application/Contracts/Services/IEnvelopeReceiverService.cs b/EnvelopeGenerator.Application/Interfaces/Services/IEnvelopeReceiverService.cs similarity index 98% rename from EnvelopeGenerator.Application/Contracts/Services/IEnvelopeReceiverService.cs rename to EnvelopeGenerator.Application/Interfaces/Services/IEnvelopeReceiverService.cs index 79632f9e..77941538 100644 --- a/EnvelopeGenerator.Application/Contracts/Services/IEnvelopeReceiverService.cs +++ b/EnvelopeGenerator.Application/Interfaces/Services/IEnvelopeReceiverService.cs @@ -8,7 +8,7 @@ using EnvelopeGenerator.Application.Envelopes.Queries; using EnvelopeGenerator.Application.Receivers.Queries; using EnvelopeGenerator.Domain.Entities; -namespace EnvelopeGenerator.Application.Contracts.Services; +namespace EnvelopeGenerator.Application.Interfaces.Services; /// /// diff --git a/EnvelopeGenerator.Application/Contracts/Services/IEnvelopeService.cs b/EnvelopeGenerator.Application/Interfaces/Services/IEnvelopeService.cs similarity index 96% rename from EnvelopeGenerator.Application/Contracts/Services/IEnvelopeService.cs rename to EnvelopeGenerator.Application/Interfaces/Services/IEnvelopeService.cs index 2b9efd69..a97c3075 100644 --- a/EnvelopeGenerator.Application/Contracts/Services/IEnvelopeService.cs +++ b/EnvelopeGenerator.Application/Interfaces/Services/IEnvelopeService.cs @@ -3,7 +3,7 @@ using DigitalData.Core.Abstraction.Application.DTO; using EnvelopeGenerator.Application.Dto; using EnvelopeGenerator.Domain.Entities; -namespace EnvelopeGenerator.Application.Contracts.Services; +namespace EnvelopeGenerator.Application.Interfaces.Services; /// /// diff --git a/EnvelopeGenerator.Application/Contracts/Services/IEnvelopeSmsHandler.cs b/EnvelopeGenerator.Application/Interfaces/Services/IEnvelopeSmsHandler.cs similarity index 92% rename from EnvelopeGenerator.Application/Contracts/Services/IEnvelopeSmsHandler.cs rename to EnvelopeGenerator.Application/Interfaces/Services/IEnvelopeSmsHandler.cs index 0e5ddd43..f86b574c 100644 --- a/EnvelopeGenerator.Application/Contracts/Services/IEnvelopeSmsHandler.cs +++ b/EnvelopeGenerator.Application/Interfaces/Services/IEnvelopeSmsHandler.cs @@ -1,7 +1,7 @@ using EnvelopeGenerator.Application.Dto.EnvelopeReceiver; using EnvelopeGenerator.Application.Dto.Messaging; -namespace EnvelopeGenerator.Application.Contracts.Services; +namespace EnvelopeGenerator.Application.Interfaces.Services; /// /// diff --git a/EnvelopeGenerator.Application/Contracts/Services/IEnvelopeTypeService.cs b/EnvelopeGenerator.Application/Interfaces/Services/IEnvelopeTypeService.cs similarity index 82% rename from EnvelopeGenerator.Application/Contracts/Services/IEnvelopeTypeService.cs rename to EnvelopeGenerator.Application/Interfaces/Services/IEnvelopeTypeService.cs index f22f332e..4a77b6b6 100644 --- a/EnvelopeGenerator.Application/Contracts/Services/IEnvelopeTypeService.cs +++ b/EnvelopeGenerator.Application/Interfaces/Services/IEnvelopeTypeService.cs @@ -2,7 +2,7 @@ using EnvelopeGenerator.Application.Dto; using EnvelopeGenerator.Domain.Entities; -namespace EnvelopeGenerator.Application.Contracts.Services; +namespace EnvelopeGenerator.Application.Interfaces.Services; /// /// diff --git a/EnvelopeGenerator.Application/Contracts/Services/IReceiverService.cs b/EnvelopeGenerator.Application/Interfaces/Services/IReceiverService.cs similarity index 93% rename from EnvelopeGenerator.Application/Contracts/Services/IReceiverService.cs rename to EnvelopeGenerator.Application/Interfaces/Services/IReceiverService.cs index 24fcc91c..3ecbcf29 100644 --- a/EnvelopeGenerator.Application/Contracts/Services/IReceiverService.cs +++ b/EnvelopeGenerator.Application/Interfaces/Services/IReceiverService.cs @@ -3,7 +3,7 @@ using DigitalData.Core.Abstraction.Application.DTO; using EnvelopeGenerator.Application.Dto.Receiver; using EnvelopeGenerator.Domain.Entities; -namespace EnvelopeGenerator.Application.Contracts.Services; +namespace EnvelopeGenerator.Application.Interfaces.Services; /// /// diff --git a/EnvelopeGenerator.Application/Contracts/Services/ISmsSender.cs b/EnvelopeGenerator.Application/Interfaces/Services/ISmsSender.cs similarity index 88% rename from EnvelopeGenerator.Application/Contracts/Services/ISmsSender.cs rename to EnvelopeGenerator.Application/Interfaces/Services/ISmsSender.cs index 722ab24f..7e3f8023 100644 --- a/EnvelopeGenerator.Application/Contracts/Services/ISmsSender.cs +++ b/EnvelopeGenerator.Application/Interfaces/Services/ISmsSender.cs @@ -1,6 +1,6 @@ using EnvelopeGenerator.Application.Dto.Messaging; -namespace EnvelopeGenerator.Application.Contracts.Services; +namespace EnvelopeGenerator.Application.Interfaces.Services; //TODO: move to DigitalData.Core /// diff --git a/EnvelopeGenerator.Application/SQL/DocumentCreateReadSQL.cs b/EnvelopeGenerator.Application/SQL/DocumentCreateReadSQL.cs index 468055c5..fd61166f 100644 --- a/EnvelopeGenerator.Application/SQL/DocumentCreateReadSQL.cs +++ b/EnvelopeGenerator.Application/SQL/DocumentCreateReadSQL.cs @@ -1,5 +1,5 @@ using Dapper; -using EnvelopeGenerator.Application.Contracts.SQLExecutor; +using EnvelopeGenerator.Application.Interfaces.SQLExecutor; using EnvelopeGenerator.Application.Exceptions; using EnvelopeGenerator.Domain.Entities; diff --git a/EnvelopeGenerator.Application/SQL/EnvelopeCreateReadSQL.cs b/EnvelopeGenerator.Application/SQL/EnvelopeCreateReadSQL.cs index 40b05e68..ff739074 100644 --- a/EnvelopeGenerator.Application/SQL/EnvelopeCreateReadSQL.cs +++ b/EnvelopeGenerator.Application/SQL/EnvelopeCreateReadSQL.cs @@ -1,5 +1,5 @@ using Dapper; -using EnvelopeGenerator.Application.Contracts.SQLExecutor; +using EnvelopeGenerator.Application.Interfaces.SQLExecutor; using EnvelopeGenerator.Domain.Entities; using System.Data; diff --git a/EnvelopeGenerator.Application/SQL/EnvelopeReceiverAddReadSQL.cs b/EnvelopeGenerator.Application/SQL/EnvelopeReceiverAddReadSQL.cs index 73fc5de2..935d0d20 100644 --- a/EnvelopeGenerator.Application/SQL/EnvelopeReceiverAddReadSQL.cs +++ b/EnvelopeGenerator.Application/SQL/EnvelopeReceiverAddReadSQL.cs @@ -1,5 +1,5 @@ using Dapper; -using EnvelopeGenerator.Application.Contracts.SQLExecutor; +using EnvelopeGenerator.Application.Interfaces.SQLExecutor; using EnvelopeGenerator.Domain.Entities; namespace EnvelopeGenerator.Application.SQL; diff --git a/EnvelopeGenerator.Application/Services/Authenticator.cs b/EnvelopeGenerator.Application/Services/Authenticator.cs index ed6e51ee..2bedc578 100644 --- a/EnvelopeGenerator.Application/Services/Authenticator.cs +++ b/EnvelopeGenerator.Application/Services/Authenticator.cs @@ -1,5 +1,5 @@ using EnvelopeGenerator.Application.Configurations; -using EnvelopeGenerator.Application.Contracts.Services; +using EnvelopeGenerator.Application.Interfaces.Services; using Microsoft.Extensions.Options; using OtpNet; using QRCoder; diff --git a/EnvelopeGenerator.Application/Services/ConfigService.cs b/EnvelopeGenerator.Application/Services/ConfigService.cs index a8355fb4..c72eb0e8 100644 --- a/EnvelopeGenerator.Application/Services/ConfigService.cs +++ b/EnvelopeGenerator.Application/Services/ConfigService.cs @@ -1,10 +1,10 @@ using AutoMapper; using DigitalData.Core.Application; using DigitalData.Core.Abstraction.Application.DTO; -using EnvelopeGenerator.Application.Contracts.Services; +using EnvelopeGenerator.Application.Interfaces.Services; using EnvelopeGenerator.Application.Dto; using EnvelopeGenerator.Domain.Entities; -using EnvelopeGenerator.Application.Contracts.Repositories; +using EnvelopeGenerator.Application.Interfaces.Repositories; using Microsoft.Extensions.Caching.Memory; using Microsoft.Extensions.Logging; diff --git a/EnvelopeGenerator.Application/Services/DocumentReceiverElementService.cs b/EnvelopeGenerator.Application/Services/DocumentReceiverElementService.cs index 28e3fb3c..2b8e620a 100644 --- a/EnvelopeGenerator.Application/Services/DocumentReceiverElementService.cs +++ b/EnvelopeGenerator.Application/Services/DocumentReceiverElementService.cs @@ -1,9 +1,9 @@ using AutoMapper; using DigitalData.Core.Application; -using EnvelopeGenerator.Application.Contracts.Services; +using EnvelopeGenerator.Application.Interfaces.Services; using EnvelopeGenerator.Application.Dto; using EnvelopeGenerator.Domain.Entities; -using EnvelopeGenerator.Application.Contracts.Repositories; +using EnvelopeGenerator.Application.Interfaces.Repositories; namespace EnvelopeGenerator.Application.Services; diff --git a/EnvelopeGenerator.Application/Services/DocumentStatusService.cs b/EnvelopeGenerator.Application/Services/DocumentStatusService.cs index d9dfd4dd..2f94b070 100644 --- a/EnvelopeGenerator.Application/Services/DocumentStatusService.cs +++ b/EnvelopeGenerator.Application/Services/DocumentStatusService.cs @@ -1,9 +1,9 @@ using AutoMapper; using DigitalData.Core.Application; -using EnvelopeGenerator.Application.Contracts.Services; +using EnvelopeGenerator.Application.Interfaces.Services; using EnvelopeGenerator.Application.Dto; using EnvelopeGenerator.Domain.Entities; -using EnvelopeGenerator.Application.Contracts.Repositories; +using EnvelopeGenerator.Application.Interfaces.Repositories; namespace EnvelopeGenerator.Application.Services; diff --git a/EnvelopeGenerator.Application/Services/EmailTemplateService.cs b/EnvelopeGenerator.Application/Services/EmailTemplateService.cs index 753e7210..bb628376 100644 --- a/EnvelopeGenerator.Application/Services/EmailTemplateService.cs +++ b/EnvelopeGenerator.Application/Services/EmailTemplateService.cs @@ -2,11 +2,11 @@ using DigitalData.Core.Application; using EnvelopeGenerator.Application.Dto; using EnvelopeGenerator.Domain.Entities; -using EnvelopeGenerator.Application.Contracts.Repositories; +using EnvelopeGenerator.Application.Interfaces.Repositories; using static EnvelopeGenerator.Domain.Constants; using DigitalData.Core.Abstraction.Application.DTO; using Microsoft.Extensions.Logging; -using EnvelopeGenerator.Application.Contracts.Services; +using EnvelopeGenerator.Application.Interfaces.Services; namespace EnvelopeGenerator.Application.Services; diff --git a/EnvelopeGenerator.Application/Services/EnvelopeDocumentService.cs b/EnvelopeGenerator.Application/Services/EnvelopeDocumentService.cs index 7d5fc99e..6e871476 100644 --- a/EnvelopeGenerator.Application/Services/EnvelopeDocumentService.cs +++ b/EnvelopeGenerator.Application/Services/EnvelopeDocumentService.cs @@ -1,9 +1,9 @@ using AutoMapper; using DigitalData.Core.Application; -using EnvelopeGenerator.Application.Contracts.Services; +using EnvelopeGenerator.Application.Interfaces.Services; using EnvelopeGenerator.Application.Dto; using EnvelopeGenerator.Domain.Entities; -using EnvelopeGenerator.Application.Contracts.Repositories; +using EnvelopeGenerator.Application.Interfaces.Repositories; namespace EnvelopeGenerator.Application.Services; diff --git a/EnvelopeGenerator.Application/Services/EnvelopeHistoryService.cs b/EnvelopeGenerator.Application/Services/EnvelopeHistoryService.cs index f6c0937e..d7e2847a 100644 --- a/EnvelopeGenerator.Application/Services/EnvelopeHistoryService.cs +++ b/EnvelopeGenerator.Application/Services/EnvelopeHistoryService.cs @@ -1,11 +1,11 @@ using AutoMapper; using DigitalData.Core.Application; using EnvelopeGenerator.Domain.Entities; -using EnvelopeGenerator.Application.Contracts.Repositories; +using EnvelopeGenerator.Application.Interfaces.Repositories; using static EnvelopeGenerator.Domain.Constants; using EnvelopeGenerator.Application.Dto.EnvelopeHistory; using EnvelopeGenerator.Application.Dto.Receiver; -using EnvelopeGenerator.Application.Contracts.Services; +using EnvelopeGenerator.Application.Interfaces.Services; using DigitalData.Core.Abstraction.Application.DTO; namespace EnvelopeGenerator.Application.Services; diff --git a/EnvelopeGenerator.Application/Services/EnvelopeMailService.cs b/EnvelopeGenerator.Application/Services/EnvelopeMailService.cs index 18fcd4e5..ed672d0c 100644 --- a/EnvelopeGenerator.Application/Services/EnvelopeMailService.cs +++ b/EnvelopeGenerator.Application/Services/EnvelopeMailService.cs @@ -11,7 +11,7 @@ using EnvelopeGenerator.Application.Dto.EnvelopeReceiverReadOnly; using EnvelopeGenerator.Application.Configurations; using EnvelopeGenerator.Application.Extensions; using Newtonsoft.Json; -using EnvelopeGenerator.Application.Contracts.Services; +using EnvelopeGenerator.Application.Interfaces.Services; using DigitalData.Core.Abstraction.Application.DTO; using EnvelopeGenerator.Domain; diff --git a/EnvelopeGenerator.Application/Services/EnvelopeReceiverReadOnlyService.cs b/EnvelopeGenerator.Application/Services/EnvelopeReceiverReadOnlyService.cs index 02c6ad84..753bec86 100644 --- a/EnvelopeGenerator.Application/Services/EnvelopeReceiverReadOnlyService.cs +++ b/EnvelopeGenerator.Application/Services/EnvelopeReceiverReadOnlyService.cs @@ -1,9 +1,9 @@ using AutoMapper; using DigitalData.Core.Application; -using EnvelopeGenerator.Application.Contracts.Services; +using EnvelopeGenerator.Application.Interfaces.Services; using EnvelopeGenerator.Application.Dto.EnvelopeReceiverReadOnly; using EnvelopeGenerator.Domain.Entities; -using EnvelopeGenerator.Application.Contracts.Repositories; +using EnvelopeGenerator.Application.Interfaces.Repositories; namespace EnvelopeGenerator.Application.Services; diff --git a/EnvelopeGenerator.Application/Services/EnvelopeReceiverService.cs b/EnvelopeGenerator.Application/Services/EnvelopeReceiverService.cs index 4540254b..2c367b17 100644 --- a/EnvelopeGenerator.Application/Services/EnvelopeReceiverService.cs +++ b/EnvelopeGenerator.Application/Services/EnvelopeReceiverService.cs @@ -4,12 +4,12 @@ using DigitalData.Core.Abstraction.Application.DTO; using EnvelopeGenerator.Application.Dto.EnvelopeReceiver; using EnvelopeGenerator.Application.Resources; using EnvelopeGenerator.Domain.Entities; -using EnvelopeGenerator.Application.Contracts.Repositories; +using EnvelopeGenerator.Application.Interfaces.Repositories; using Microsoft.Extensions.Localization; using Microsoft.Extensions.Logging; using EnvelopeGenerator.Extensions; using EnvelopeGenerator.Application.Dto.Messaging; -using EnvelopeGenerator.Application.Contracts.Services; +using EnvelopeGenerator.Application.Interfaces.Services; using EnvelopeGenerator.Application.Envelopes; using EnvelopeGenerator.Application.Envelopes.Queries; using EnvelopeGenerator.Application.Receivers.Queries; diff --git a/EnvelopeGenerator.Application/Services/EnvelopeService.cs b/EnvelopeGenerator.Application/Services/EnvelopeService.cs index a3d35f02..4f0501eb 100644 --- a/EnvelopeGenerator.Application/Services/EnvelopeService.cs +++ b/EnvelopeGenerator.Application/Services/EnvelopeService.cs @@ -1,10 +1,10 @@ using AutoMapper; using DigitalData.Core.Application; using DigitalData.Core.Abstraction.Application.DTO; -using EnvelopeGenerator.Application.Contracts.Services; +using EnvelopeGenerator.Application.Interfaces.Services; using EnvelopeGenerator.Application.Dto; using EnvelopeGenerator.Domain.Entities; -using EnvelopeGenerator.Application.Contracts.Repositories; +using EnvelopeGenerator.Application.Interfaces.Repositories; namespace EnvelopeGenerator.Application.Services; diff --git a/EnvelopeGenerator.Application/Services/EnvelopeSmsHandler.cs b/EnvelopeGenerator.Application/Services/EnvelopeSmsHandler.cs index 13115733..89a9ba5a 100644 --- a/EnvelopeGenerator.Application/Services/EnvelopeSmsHandler.cs +++ b/EnvelopeGenerator.Application/Services/EnvelopeSmsHandler.cs @@ -1,5 +1,5 @@ using EnvelopeGenerator.Application.Configurations; -using EnvelopeGenerator.Application.Contracts.Services; +using EnvelopeGenerator.Application.Interfaces.Services; using EnvelopeGenerator.Application.Dto.EnvelopeReceiver; using EnvelopeGenerator.Application.Dto.Messaging; using EnvelopeGenerator.Application.Extensions; diff --git a/EnvelopeGenerator.Application/Services/EnvelopeTypeService.cs b/EnvelopeGenerator.Application/Services/EnvelopeTypeService.cs index b9229ce4..d6f2e6ae 100644 --- a/EnvelopeGenerator.Application/Services/EnvelopeTypeService.cs +++ b/EnvelopeGenerator.Application/Services/EnvelopeTypeService.cs @@ -2,10 +2,10 @@ using DigitalData.Core.Application; using EnvelopeGenerator.Application.Dto; using EnvelopeGenerator.Domain.Entities; -using EnvelopeGenerator.Application.Contracts.Repositories; +using EnvelopeGenerator.Application.Interfaces.Repositories; using Microsoft.Extensions.Caching.Memory; using Microsoft.Extensions.Logging; -using EnvelopeGenerator.Application.Contracts.Services; +using EnvelopeGenerator.Application.Interfaces.Services; using DigitalData.Core.Abstraction.Application.DTO; namespace EnvelopeGenerator.Application.Services; diff --git a/EnvelopeGenerator.Application/Services/GTXSmsSender.cs b/EnvelopeGenerator.Application/Services/GTXSmsSender.cs index 8e48c956..1a4a2d43 100644 --- a/EnvelopeGenerator.Application/Services/GTXSmsSender.cs +++ b/EnvelopeGenerator.Application/Services/GTXSmsSender.cs @@ -2,7 +2,7 @@ using DigitalData.Core.Client.Interface; using DigitalData.Core.Client; using EnvelopeGenerator.Application.Configurations; -using EnvelopeGenerator.Application.Contracts.Services; +using EnvelopeGenerator.Application.Interfaces.Services; using EnvelopeGenerator.Application.Dto.Messaging; using Microsoft.Extensions.Options; diff --git a/EnvelopeGenerator.Application/Services/ReceiverService.cs b/EnvelopeGenerator.Application/Services/ReceiverService.cs index 0c1ca7e9..b234208f 100644 --- a/EnvelopeGenerator.Application/Services/ReceiverService.cs +++ b/EnvelopeGenerator.Application/Services/ReceiverService.cs @@ -1,10 +1,10 @@ using AutoMapper; using DigitalData.Core.Application; using EnvelopeGenerator.Domain.Entities; -using EnvelopeGenerator.Application.Contracts.Repositories; +using EnvelopeGenerator.Application.Interfaces.Repositories; using EnvelopeGenerator.Application.Dto.Receiver; using DigitalData.Core.Abstraction.Application.DTO; -using EnvelopeGenerator.Application.Contracts.Services; +using EnvelopeGenerator.Application.Interfaces.Services; namespace EnvelopeGenerator.Application.Services; diff --git a/EnvelopeGenerator.GeneratorAPI/Controllers/EmailTemplateController.cs b/EnvelopeGenerator.GeneratorAPI/Controllers/EmailTemplateController.cs index 207a1aab..752a1a1d 100644 --- a/EnvelopeGenerator.GeneratorAPI/Controllers/EmailTemplateController.cs +++ b/EnvelopeGenerator.GeneratorAPI/Controllers/EmailTemplateController.cs @@ -5,7 +5,7 @@ using EnvelopeGenerator.Application.EmailTemplates.Commands.Reset; using EnvelopeGenerator.Application.EmailTemplates.Queries.Read; using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Mvc; -using EnvelopeGenerator.Application.Contracts.Repositories; +using EnvelopeGenerator.Application.Interfaces.Repositories; using EnvelopeGenerator.Application.Dto; using MediatR; using System.Threading.Tasks; diff --git a/EnvelopeGenerator.GeneratorAPI/Controllers/EnvelopeController.cs b/EnvelopeGenerator.GeneratorAPI/Controllers/EnvelopeController.cs index 49212654..5d32a543 100644 --- a/EnvelopeGenerator.GeneratorAPI/Controllers/EnvelopeController.cs +++ b/EnvelopeGenerator.GeneratorAPI/Controllers/EnvelopeController.cs @@ -1,5 +1,5 @@ using DigitalData.Core.Abstraction.Application.DTO; -using EnvelopeGenerator.Application.Contracts.Services; +using EnvelopeGenerator.Application.Interfaces.Services; using EnvelopeGenerator.Application.Envelopes.Commands; using EnvelopeGenerator.Application.Envelopes.Queries; using MediatR; diff --git a/EnvelopeGenerator.GeneratorAPI/Controllers/EnvelopeReceiverController.cs b/EnvelopeGenerator.GeneratorAPI/Controllers/EnvelopeReceiverController.cs index 15a8a8da..f46eabca 100644 --- a/EnvelopeGenerator.GeneratorAPI/Controllers/EnvelopeReceiverController.cs +++ b/EnvelopeGenerator.GeneratorAPI/Controllers/EnvelopeReceiverController.cs @@ -1,7 +1,7 @@ using AutoMapper; using DigitalData.Core.Abstraction.Application.DTO; -using EnvelopeGenerator.Application.Contracts.Services; -using EnvelopeGenerator.Application.Contracts.SQLExecutor; +using EnvelopeGenerator.Application.Interfaces.Services; +using EnvelopeGenerator.Application.Interfaces.SQLExecutor; using EnvelopeGenerator.Application.Dto.Receiver; using EnvelopeGenerator.Application.EnvelopeReceivers.Commands; using EnvelopeGenerator.Application.EnvelopeReceivers.Queries; diff --git a/EnvelopeGenerator.GeneratorAPI/Controllers/EnvelopeTypeController.cs b/EnvelopeGenerator.GeneratorAPI/Controllers/EnvelopeTypeController.cs index d41a9660..ee0824ef 100644 --- a/EnvelopeGenerator.GeneratorAPI/Controllers/EnvelopeTypeController.cs +++ b/EnvelopeGenerator.GeneratorAPI/Controllers/EnvelopeTypeController.cs @@ -1,5 +1,5 @@ using DigitalData.Core.Abstraction.Application.DTO; -using EnvelopeGenerator.Application.Contracts.Services; +using EnvelopeGenerator.Application.Interfaces.Services; using Microsoft.AspNetCore.Mvc; namespace EnvelopeGenerator.GeneratorAPI.Controllers; diff --git a/EnvelopeGenerator.GeneratorAPI/Controllers/HistoryController.cs b/EnvelopeGenerator.GeneratorAPI/Controllers/HistoryController.cs index c46dcc60..6dc41c8b 100644 --- a/EnvelopeGenerator.GeneratorAPI/Controllers/HistoryController.cs +++ b/EnvelopeGenerator.GeneratorAPI/Controllers/HistoryController.cs @@ -1,4 +1,4 @@ -using EnvelopeGenerator.Application.Contracts.Services; +using EnvelopeGenerator.Application.Interfaces.Services; using EnvelopeGenerator.Application.Histories.Queries.Read; using EnvelopeGenerator.Extensions; using MediatR; diff --git a/EnvelopeGenerator.GeneratorAPI/Controllers/ReceiverController.cs b/EnvelopeGenerator.GeneratorAPI/Controllers/ReceiverController.cs index d4ffbad1..284ab7ab 100644 --- a/EnvelopeGenerator.GeneratorAPI/Controllers/ReceiverController.cs +++ b/EnvelopeGenerator.GeneratorAPI/Controllers/ReceiverController.cs @@ -1,6 +1,6 @@ using DigitalData.Core.Abstraction.Application.DTO; using DigitalData.Core.API; -using EnvelopeGenerator.Application.Contracts.Services; +using EnvelopeGenerator.Application.Interfaces.Services; using EnvelopeGenerator.Application.Dto.Receiver; using EnvelopeGenerator.Application.Receivers.Queries; using EnvelopeGenerator.Domain.Entities; diff --git a/EnvelopeGenerator.Infrastructure/DependencyExtensions.cs b/EnvelopeGenerator.Infrastructure/DependencyExtensions.cs index 7a33a5db..f8a72c62 100644 --- a/EnvelopeGenerator.Infrastructure/DependencyExtensions.cs +++ b/EnvelopeGenerator.Infrastructure/DependencyExtensions.cs @@ -1,4 +1,4 @@ -using EnvelopeGenerator.Application.Contracts.Repositories; +using EnvelopeGenerator.Application.Interfaces.Repositories; using EnvelopeGenerator.Infrastructure.Repositories; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.DependencyInjection.Extensions; @@ -6,7 +6,7 @@ using Microsoft.EntityFrameworkCore; using DigitalData.Core.Infrastructure; using EnvelopeGenerator.Domain.Entities; using DigitalData.Core.Infrastructure.AutoMapper; -using EnvelopeGenerator.Application.Contracts.SQLExecutor; +using EnvelopeGenerator.Application.Interfaces.SQLExecutor; using Microsoft.Extensions.Configuration; using EnvelopeGenerator.Infrastructure.Executor; using Dapper; diff --git a/EnvelopeGenerator.Infrastructure/Executor/DocumentExecutor.cs b/EnvelopeGenerator.Infrastructure/Executor/DocumentExecutor.cs index 11088c63..85356a44 100644 --- a/EnvelopeGenerator.Infrastructure/Executor/DocumentExecutor.cs +++ b/EnvelopeGenerator.Infrastructure/Executor/DocumentExecutor.cs @@ -1,5 +1,5 @@ using Dapper; -using EnvelopeGenerator.Application.Contracts.SQLExecutor; +using EnvelopeGenerator.Application.Interfaces.SQLExecutor; using EnvelopeGenerator.Application.SQL; using EnvelopeGenerator.Domain.Entities; using Microsoft.Data.SqlClient; diff --git a/EnvelopeGenerator.Infrastructure/Executor/EnvelopeExecutor.cs b/EnvelopeGenerator.Infrastructure/Executor/EnvelopeExecutor.cs index 7b41ca79..82eb093a 100644 --- a/EnvelopeGenerator.Infrastructure/Executor/EnvelopeExecutor.cs +++ b/EnvelopeGenerator.Infrastructure/Executor/EnvelopeExecutor.cs @@ -1,7 +1,7 @@ using Dapper; using DigitalData.UserManager.Application.Contracts.Repositories; -using EnvelopeGenerator.Application.Contracts.Repositories; -using EnvelopeGenerator.Application.Contracts.SQLExecutor; +using EnvelopeGenerator.Application.Interfaces.Repositories; +using EnvelopeGenerator.Application.Interfaces.SQLExecutor; using EnvelopeGenerator.Application.SQL; using EnvelopeGenerator.Domain.Entities; using Microsoft.Data.SqlClient; diff --git a/EnvelopeGenerator.Infrastructure/Executor/EnvelopeReceiverExecutor.cs b/EnvelopeGenerator.Infrastructure/Executor/EnvelopeReceiverExecutor.cs index ddcd9d28..d3c51bf6 100644 --- a/EnvelopeGenerator.Infrastructure/Executor/EnvelopeReceiverExecutor.cs +++ b/EnvelopeGenerator.Infrastructure/Executor/EnvelopeReceiverExecutor.cs @@ -1,6 +1,6 @@ using Dapper; -using EnvelopeGenerator.Application.Contracts.Repositories; -using EnvelopeGenerator.Application.Contracts.SQLExecutor; +using EnvelopeGenerator.Application.Interfaces.Repositories; +using EnvelopeGenerator.Application.Interfaces.SQLExecutor; using EnvelopeGenerator.Application.SQL; using EnvelopeGenerator.Domain.Entities; using Microsoft.Data.SqlClient; diff --git a/EnvelopeGenerator.Infrastructure/Executor/Query.cs b/EnvelopeGenerator.Infrastructure/Executor/Query.cs index 5664d0be..c32bacf5 100644 --- a/EnvelopeGenerator.Infrastructure/Executor/Query.cs +++ b/EnvelopeGenerator.Infrastructure/Executor/Query.cs @@ -1,4 +1,4 @@ -using EnvelopeGenerator.Application.Contracts.SQLExecutor; +using EnvelopeGenerator.Application.Interfaces.SQLExecutor; using Microsoft.EntityFrameworkCore; namespace EnvelopeGenerator.Infrastructure.Executor; diff --git a/EnvelopeGenerator.Infrastructure/Executor/SQLExecutor.cs b/EnvelopeGenerator.Infrastructure/Executor/SQLExecutor.cs index 5b8a0a3f..21108767 100644 --- a/EnvelopeGenerator.Infrastructure/Executor/SQLExecutor.cs +++ b/EnvelopeGenerator.Infrastructure/Executor/SQLExecutor.cs @@ -1,5 +1,5 @@ using Dapper; -using EnvelopeGenerator.Application.Contracts.SQLExecutor; +using EnvelopeGenerator.Application.Interfaces.SQLExecutor; using Microsoft.Data.SqlClient; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Options; diff --git a/EnvelopeGenerator.Infrastructure/Executor/SQLExecutorBaseEntity.cs b/EnvelopeGenerator.Infrastructure/Executor/SQLExecutorBaseEntity.cs index d3e8b6d3..68b41cc1 100644 --- a/EnvelopeGenerator.Infrastructure/Executor/SQLExecutorBaseEntity.cs +++ b/EnvelopeGenerator.Infrastructure/Executor/SQLExecutorBaseEntity.cs @@ -1,4 +1,4 @@ -using EnvelopeGenerator.Application.Contracts.SQLExecutor; +using EnvelopeGenerator.Application.Interfaces.SQLExecutor; using Microsoft.EntityFrameworkCore; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Options; diff --git a/EnvelopeGenerator.Infrastructure/Repositories/ConfigRepository.cs b/EnvelopeGenerator.Infrastructure/Repositories/ConfigRepository.cs index 24618f72..d32212cc 100644 --- a/EnvelopeGenerator.Infrastructure/Repositories/ConfigRepository.cs +++ b/EnvelopeGenerator.Infrastructure/Repositories/ConfigRepository.cs @@ -1,6 +1,6 @@ using DigitalData.Core.Infrastructure; using EnvelopeGenerator.Domain.Entities; -using EnvelopeGenerator.Application.Contracts.Repositories; +using EnvelopeGenerator.Application.Interfaces.Repositories; using Microsoft.EntityFrameworkCore; namespace EnvelopeGenerator.Infrastructure.Repositories; diff --git a/EnvelopeGenerator.Infrastructure/Repositories/DocumentReceiverElementRepository.cs b/EnvelopeGenerator.Infrastructure/Repositories/DocumentReceiverElementRepository.cs index c3c13c59..78570ffe 100644 --- a/EnvelopeGenerator.Infrastructure/Repositories/DocumentReceiverElementRepository.cs +++ b/EnvelopeGenerator.Infrastructure/Repositories/DocumentReceiverElementRepository.cs @@ -1,6 +1,6 @@ using DigitalData.Core.Infrastructure; using EnvelopeGenerator.Domain.Entities; -using EnvelopeGenerator.Application.Contracts.Repositories; +using EnvelopeGenerator.Application.Interfaces.Repositories; namespace EnvelopeGenerator.Infrastructure.Repositories; diff --git a/EnvelopeGenerator.Infrastructure/Repositories/DocumentStatusRepository.cs b/EnvelopeGenerator.Infrastructure/Repositories/DocumentStatusRepository.cs index dd375cbf..1fb1a5f6 100644 --- a/EnvelopeGenerator.Infrastructure/Repositories/DocumentStatusRepository.cs +++ b/EnvelopeGenerator.Infrastructure/Repositories/DocumentStatusRepository.cs @@ -1,6 +1,6 @@ using DigitalData.Core.Infrastructure; using EnvelopeGenerator.Domain.Entities; -using EnvelopeGenerator.Application.Contracts.Repositories; +using EnvelopeGenerator.Application.Interfaces.Repositories; namespace EnvelopeGenerator.Infrastructure.Repositories; diff --git a/EnvelopeGenerator.Infrastructure/Repositories/EmailTemplateRepository.cs b/EnvelopeGenerator.Infrastructure/Repositories/EmailTemplateRepository.cs index bf2bb5ac..ee8c9207 100644 --- a/EnvelopeGenerator.Infrastructure/Repositories/EmailTemplateRepository.cs +++ b/EnvelopeGenerator.Infrastructure/Repositories/EmailTemplateRepository.cs @@ -1,6 +1,6 @@ using DigitalData.Core.Infrastructure; using EnvelopeGenerator.Domain.Entities; -using EnvelopeGenerator.Application.Contracts.Repositories; +using EnvelopeGenerator.Application.Interfaces.Repositories; using Microsoft.EntityFrameworkCore; using Microsoft.Extensions.Caching.Memory; using static EnvelopeGenerator.Domain.Constants; diff --git a/EnvelopeGenerator.Infrastructure/Repositories/EnvelopeDocumentRepository.cs b/EnvelopeGenerator.Infrastructure/Repositories/EnvelopeDocumentRepository.cs index 1481507f..a100a0e8 100644 --- a/EnvelopeGenerator.Infrastructure/Repositories/EnvelopeDocumentRepository.cs +++ b/EnvelopeGenerator.Infrastructure/Repositories/EnvelopeDocumentRepository.cs @@ -1,6 +1,6 @@ using DigitalData.Core.Infrastructure; using EnvelopeGenerator.Domain.Entities; -using EnvelopeGenerator.Application.Contracts.Repositories; +using EnvelopeGenerator.Application.Interfaces.Repositories; namespace EnvelopeGenerator.Infrastructure.Repositories; diff --git a/EnvelopeGenerator.Infrastructure/Repositories/EnvelopeHistoryRepository.cs b/EnvelopeGenerator.Infrastructure/Repositories/EnvelopeHistoryRepository.cs index 71037e3c..19bb0f09 100644 --- a/EnvelopeGenerator.Infrastructure/Repositories/EnvelopeHistoryRepository.cs +++ b/EnvelopeGenerator.Infrastructure/Repositories/EnvelopeHistoryRepository.cs @@ -1,6 +1,6 @@ using DigitalData.Core.Infrastructure; using EnvelopeGenerator.Domain.Entities; -using EnvelopeGenerator.Application.Contracts.Repositories; +using EnvelopeGenerator.Application.Interfaces.Repositories; using Microsoft.EntityFrameworkCore; using EnvelopeGenerator.Domain; diff --git a/EnvelopeGenerator.Infrastructure/Repositories/EnvelopeReceiverReadOnlyRepository.cs b/EnvelopeGenerator.Infrastructure/Repositories/EnvelopeReceiverReadOnlyRepository.cs index b69bbefb..77b81453 100644 --- a/EnvelopeGenerator.Infrastructure/Repositories/EnvelopeReceiverReadOnlyRepository.cs +++ b/EnvelopeGenerator.Infrastructure/Repositories/EnvelopeReceiverReadOnlyRepository.cs @@ -1,6 +1,6 @@ using DigitalData.Core.Infrastructure; using EnvelopeGenerator.Domain.Entities; -using EnvelopeGenerator.Application.Contracts.Repositories; +using EnvelopeGenerator.Application.Interfaces.Repositories; using Microsoft.EntityFrameworkCore; namespace EnvelopeGenerator.Infrastructure.Repositories; diff --git a/EnvelopeGenerator.Infrastructure/Repositories/EnvelopeRepository.cs b/EnvelopeGenerator.Infrastructure/Repositories/EnvelopeRepository.cs index 5fb74c5c..dabdcfbe 100644 --- a/EnvelopeGenerator.Infrastructure/Repositories/EnvelopeRepository.cs +++ b/EnvelopeGenerator.Infrastructure/Repositories/EnvelopeRepository.cs @@ -1,6 +1,6 @@ using DigitalData.Core.Infrastructure; using EnvelopeGenerator.Domain.Entities; -using EnvelopeGenerator.Application.Contracts.Repositories; +using EnvelopeGenerator.Application.Interfaces.Repositories; using Microsoft.EntityFrameworkCore; namespace EnvelopeGenerator.Infrastructure.Repositories; diff --git a/EnvelopeGenerator.Infrastructure/Repositories/EnvelopeTypeRepository.cs b/EnvelopeGenerator.Infrastructure/Repositories/EnvelopeTypeRepository.cs index db87d712..9ec5fb4a 100644 --- a/EnvelopeGenerator.Infrastructure/Repositories/EnvelopeTypeRepository.cs +++ b/EnvelopeGenerator.Infrastructure/Repositories/EnvelopeTypeRepository.cs @@ -1,6 +1,6 @@ using DigitalData.Core.Infrastructure; using EnvelopeGenerator.Domain.Entities; -using EnvelopeGenerator.Application.Contracts.Repositories; +using EnvelopeGenerator.Application.Interfaces.Repositories; namespace EnvelopeGenerator.Infrastructure.Repositories; diff --git a/EnvelopeGenerator.Infrastructure/Repositories/EnvlopeReceiverRepository.cs b/EnvelopeGenerator.Infrastructure/Repositories/EnvlopeReceiverRepository.cs index 39c93a2c..00c481db 100644 --- a/EnvelopeGenerator.Infrastructure/Repositories/EnvlopeReceiverRepository.cs +++ b/EnvelopeGenerator.Infrastructure/Repositories/EnvlopeReceiverRepository.cs @@ -1,6 +1,6 @@ using DigitalData.Core.Infrastructure; using EnvelopeGenerator.Domain.Entities; -using EnvelopeGenerator.Application.Contracts.Repositories; +using EnvelopeGenerator.Application.Interfaces.Repositories; using Microsoft.EntityFrameworkCore; using EnvelopeGenerator.Application.Exceptions; diff --git a/EnvelopeGenerator.Infrastructure/Repositories/ReceiverRepository.cs b/EnvelopeGenerator.Infrastructure/Repositories/ReceiverRepository.cs index bb339fee..64833ae0 100644 --- a/EnvelopeGenerator.Infrastructure/Repositories/ReceiverRepository.cs +++ b/EnvelopeGenerator.Infrastructure/Repositories/ReceiverRepository.cs @@ -1,6 +1,6 @@ using DigitalData.Core.Infrastructure; using EnvelopeGenerator.Domain.Entities; -using EnvelopeGenerator.Application.Contracts.Repositories; +using EnvelopeGenerator.Application.Interfaces.Repositories; using Microsoft.EntityFrameworkCore; namespace EnvelopeGenerator.Infrastructure.Repositories; diff --git a/EnvelopeGenerator.Terminal/CommandManager.cs b/EnvelopeGenerator.Terminal/CommandManager.cs index f31f2739..fb9bfc7a 100644 --- a/EnvelopeGenerator.Terminal/CommandManager.cs +++ b/EnvelopeGenerator.Terminal/CommandManager.cs @@ -1,5 +1,5 @@ using CommandDotNet; -using EnvelopeGenerator.Application.Contracts.Services; +using EnvelopeGenerator.Application.Interfaces.Services; using EnvelopeGenerator.Application.Documents.Queries; using MediatR; using System.Reflection; diff --git a/EnvelopeGenerator.Terminal/DependencyInjection.cs b/EnvelopeGenerator.Terminal/DependencyInjection.cs index be1e535d..0bbd3022 100644 --- a/EnvelopeGenerator.Terminal/DependencyInjection.cs +++ b/EnvelopeGenerator.Terminal/DependencyInjection.cs @@ -5,7 +5,7 @@ using CommandDotNet.IoC.MicrosoftDependencyInjection; using EnvelopeGenerator.Infrastructure; using Microsoft.Extensions.Configuration; using Microsoft.EntityFrameworkCore; -using EnvelopeGenerator.Application.Contracts.Services; +using EnvelopeGenerator.Application.Interfaces.Services; using EnvelopeGenerator.Application.Services; using Microsoft.Extensions.Hosting; using EnvelopeGenerator.Application; diff --git a/EnvelopeGenerator.Web/Controllers/DocumentController.cs b/EnvelopeGenerator.Web/Controllers/DocumentController.cs index edd06761..a51de0bb 100644 --- a/EnvelopeGenerator.Web/Controllers/DocumentController.cs +++ b/EnvelopeGenerator.Web/Controllers/DocumentController.cs @@ -3,7 +3,7 @@ using EnvelopeGenerator.CommonServices; using EnvelopeGenerator.Web.Services; using Microsoft.AspNetCore.Authorization; using EnvelopeGenerator.Extensions; -using EnvelopeGenerator.Application.Contracts.Services; +using EnvelopeGenerator.Application.Interfaces.Services; using static EnvelopeGenerator.Domain.Constants; using EnvelopeGenerator.Domain.Entities; diff --git a/EnvelopeGenerator.Web/Controllers/EnvelopeController.cs b/EnvelopeGenerator.Web/Controllers/EnvelopeController.cs index 68335b6c..85016e18 100644 --- a/EnvelopeGenerator.Web/Controllers/EnvelopeController.cs +++ b/EnvelopeGenerator.Web/Controllers/EnvelopeController.cs @@ -4,7 +4,7 @@ using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Mvc; using System.Text.Encodings.Web; using EnvelopeGenerator.Extensions; -using EnvelopeGenerator.Application.Contracts.Services; +using EnvelopeGenerator.Application.Interfaces.Services; using static EnvelopeGenerator.Domain.Constants; using EnvelopeGenerator.Domain.Entities; using EnvelopeGenerator.Domain; diff --git a/EnvelopeGenerator.Web/Controllers/HomeController.cs b/EnvelopeGenerator.Web/Controllers/HomeController.cs index 180ca869..4a502143 100644 --- a/EnvelopeGenerator.Web/Controllers/HomeController.cs +++ b/EnvelopeGenerator.Web/Controllers/HomeController.cs @@ -16,7 +16,7 @@ using Newtonsoft.Json; using EnvelopeGenerator.Application.Dto; using DigitalData.Core.Client; using OtpNet; -using EnvelopeGenerator.Application.Contracts.Services; +using EnvelopeGenerator.Application.Interfaces.Services; using static EnvelopeGenerator.Domain.Constants; using DigitalData.Core.Abstraction.Application.DTO; using EnvelopeGenerator.Domain.Entities; diff --git a/EnvelopeGenerator.Web/Controllers/ReadOnlyController.cs b/EnvelopeGenerator.Web/Controllers/ReadOnlyController.cs index cad645ca..74052b82 100644 --- a/EnvelopeGenerator.Web/Controllers/ReadOnlyController.cs +++ b/EnvelopeGenerator.Web/Controllers/ReadOnlyController.cs @@ -1,5 +1,5 @@ using DigitalData.Core.Abstraction.Application.DTO; -using EnvelopeGenerator.Application.Contracts.Services; +using EnvelopeGenerator.Application.Interfaces.Services; using EnvelopeGenerator.Application.Dto.EnvelopeReceiverReadOnly; using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Mvc; diff --git a/EnvelopeGenerator.Web/Controllers/TFARegController.cs b/EnvelopeGenerator.Web/Controllers/TFARegController.cs index 524c219f..44233943 100644 --- a/EnvelopeGenerator.Web/Controllers/TFARegController.cs +++ b/EnvelopeGenerator.Web/Controllers/TFARegController.cs @@ -9,7 +9,7 @@ using Microsoft.Extensions.Options; using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Authentication.Cookies; using Microsoft.AspNetCore.Authentication; -using EnvelopeGenerator.Application.Contracts.Services; +using EnvelopeGenerator.Application.Interfaces.Services; using DigitalData.Core.Abstraction.Application.DTO; using static EnvelopeGenerator.Domain.Constants; diff --git a/EnvelopeGenerator.Web/Controllers/Test/TestConfigController.cs b/EnvelopeGenerator.Web/Controllers/Test/TestConfigController.cs index 6f04f0e6..23fd4c61 100644 --- a/EnvelopeGenerator.Web/Controllers/Test/TestConfigController.cs +++ b/EnvelopeGenerator.Web/Controllers/Test/TestConfigController.cs @@ -1,7 +1,7 @@ using EnvelopeGenerator.Application.Dto; using EnvelopeGenerator.Domain.Entities; using DigitalData.Core.API; -using EnvelopeGenerator.Application.Contracts.Services; +using EnvelopeGenerator.Application.Interfaces.Services; namespace EnvelopeGenerator.Web.Controllers.Test; diff --git a/EnvelopeGenerator.Web/Controllers/Test/TestDocumentReceiverElementController.cs b/EnvelopeGenerator.Web/Controllers/Test/TestDocumentReceiverElementController.cs index a8e4c632..935b22ff 100644 --- a/EnvelopeGenerator.Web/Controllers/Test/TestDocumentReceiverElementController.cs +++ b/EnvelopeGenerator.Web/Controllers/Test/TestDocumentReceiverElementController.cs @@ -1,4 +1,4 @@ -using EnvelopeGenerator.Application.Contracts.Services; +using EnvelopeGenerator.Application.Interfaces.Services; using EnvelopeGenerator.Application.Dto; using EnvelopeGenerator.Domain.Entities; diff --git a/EnvelopeGenerator.Web/Controllers/Test/TestDocumentStatusController.cs b/EnvelopeGenerator.Web/Controllers/Test/TestDocumentStatusController.cs index 3809afab..d9cf1630 100644 --- a/EnvelopeGenerator.Web/Controllers/Test/TestDocumentStatusController.cs +++ b/EnvelopeGenerator.Web/Controllers/Test/TestDocumentStatusController.cs @@ -1,4 +1,4 @@ -using EnvelopeGenerator.Application.Contracts.Services; +using EnvelopeGenerator.Application.Interfaces.Services; using EnvelopeGenerator.Application.Dto; using EnvelopeGenerator.Domain.Entities; diff --git a/EnvelopeGenerator.Web/Controllers/Test/TestEmailTemplateController.cs b/EnvelopeGenerator.Web/Controllers/Test/TestEmailTemplateController.cs index ac35e911..4174796f 100644 --- a/EnvelopeGenerator.Web/Controllers/Test/TestEmailTemplateController.cs +++ b/EnvelopeGenerator.Web/Controllers/Test/TestEmailTemplateController.cs @@ -1,5 +1,5 @@ using DigitalData.Core.Abstraction.Application.DTO; -using EnvelopeGenerator.Application.Contracts.Services; +using EnvelopeGenerator.Application.Interfaces.Services; using EnvelopeGenerator.Application.Dto; using EnvelopeGenerator.Domain.Entities; using Microsoft.AspNetCore.Mvc; diff --git a/EnvelopeGenerator.Web/Controllers/Test/TestEnvelopeController.cs b/EnvelopeGenerator.Web/Controllers/Test/TestEnvelopeController.cs index ce9dbb73..d6533ec7 100644 --- a/EnvelopeGenerator.Web/Controllers/Test/TestEnvelopeController.cs +++ b/EnvelopeGenerator.Web/Controllers/Test/TestEnvelopeController.cs @@ -2,7 +2,7 @@ using EnvelopeGenerator.Domain.Entities; using Microsoft.AspNetCore.Mvc; using EnvelopeGenerator.Extensions; -using EnvelopeGenerator.Application.Contracts.Services; +using EnvelopeGenerator.Application.Interfaces.Services; namespace EnvelopeGenerator.Web.Controllers.Test; diff --git a/EnvelopeGenerator.Web/Controllers/Test/TestEnvelopeDocumentController.cs b/EnvelopeGenerator.Web/Controllers/Test/TestEnvelopeDocumentController.cs index a81b5fd8..cdc52d5a 100644 --- a/EnvelopeGenerator.Web/Controllers/Test/TestEnvelopeDocumentController.cs +++ b/EnvelopeGenerator.Web/Controllers/Test/TestEnvelopeDocumentController.cs @@ -1,4 +1,4 @@ -using EnvelopeGenerator.Application.Contracts.Services; +using EnvelopeGenerator.Application.Interfaces.Services; using EnvelopeGenerator.Application.Dto; using EnvelopeGenerator.Domain.Entities; diff --git a/EnvelopeGenerator.Web/Controllers/Test/TestEnvelopeHistoryController.cs b/EnvelopeGenerator.Web/Controllers/Test/TestEnvelopeHistoryController.cs index 0389361b..b3d0f1fc 100644 --- a/EnvelopeGenerator.Web/Controllers/Test/TestEnvelopeHistoryController.cs +++ b/EnvelopeGenerator.Web/Controllers/Test/TestEnvelopeHistoryController.cs @@ -1,5 +1,5 @@ using DigitalData.Core.API; -using EnvelopeGenerator.Application.Contracts.Services; +using EnvelopeGenerator.Application.Interfaces.Services; using EnvelopeGenerator.Application.Dto.EnvelopeHistory; using EnvelopeGenerator.Domain.Entities; using Microsoft.AspNetCore.Mvc; diff --git a/EnvelopeGenerator.Web/Controllers/Test/TestEnvelopeMailController.cs b/EnvelopeGenerator.Web/Controllers/Test/TestEnvelopeMailController.cs index b6e2df3b..858ffbfd 100644 --- a/EnvelopeGenerator.Web/Controllers/Test/TestEnvelopeMailController.cs +++ b/EnvelopeGenerator.Web/Controllers/Test/TestEnvelopeMailController.cs @@ -1,5 +1,5 @@ using DigitalData.Core.Abstraction.Application.DTO; -using EnvelopeGenerator.Application.Contracts.Services; +using EnvelopeGenerator.Application.Interfaces.Services; using EnvelopeGenerator.Application.Dto.EnvelopeReceiver; using Microsoft.AspNetCore.Mvc; diff --git a/EnvelopeGenerator.Web/Controllers/Test/TestEnvelopeReceiverController.cs b/EnvelopeGenerator.Web/Controllers/Test/TestEnvelopeReceiverController.cs index 24d9b9c3..5b45543c 100644 --- a/EnvelopeGenerator.Web/Controllers/Test/TestEnvelopeReceiverController.cs +++ b/EnvelopeGenerator.Web/Controllers/Test/TestEnvelopeReceiverController.cs @@ -3,7 +3,7 @@ using EnvelopeGenerator.Extensions; using EnvelopeGenerator.Domain.Entities; using Microsoft.AspNetCore.Mvc; using EnvelopeGenerator.Application.Dto.EnvelopeReceiver; -using EnvelopeGenerator.Application.Contracts.Services; +using EnvelopeGenerator.Application.Interfaces.Services; using DigitalData.Core.Abstraction.Application.DTO; namespace EnvelopeGenerator.Web.Controllers.Test; diff --git a/EnvelopeGenerator.Web/Controllers/Test/TestEnvelopeTypeController.cs b/EnvelopeGenerator.Web/Controllers/Test/TestEnvelopeTypeController.cs index dfbb9f7e..abe06ad8 100644 --- a/EnvelopeGenerator.Web/Controllers/Test/TestEnvelopeTypeController.cs +++ b/EnvelopeGenerator.Web/Controllers/Test/TestEnvelopeTypeController.cs @@ -1,4 +1,4 @@ -using EnvelopeGenerator.Application.Contracts.Services; +using EnvelopeGenerator.Application.Interfaces.Services; using EnvelopeGenerator.Application.Dto; using EnvelopeGenerator.Domain.Entities; diff --git a/EnvelopeGenerator.Web/Controllers/Test/TestMessagingController.cs b/EnvelopeGenerator.Web/Controllers/Test/TestMessagingController.cs index 0682ea70..c8a9aea5 100644 --- a/EnvelopeGenerator.Web/Controllers/Test/TestMessagingController.cs +++ b/EnvelopeGenerator.Web/Controllers/Test/TestMessagingController.cs @@ -1,4 +1,4 @@ -using EnvelopeGenerator.Application.Contracts.Services; +using EnvelopeGenerator.Application.Interfaces.Services; using Microsoft.AspNetCore.Mvc; namespace EnvelopeGenerator.Web.Controllers.Test diff --git a/EnvelopeGenerator.Web/Controllers/Test/TestReceiverController.cs b/EnvelopeGenerator.Web/Controllers/Test/TestReceiverController.cs index 7176a48b..60601dd9 100644 --- a/EnvelopeGenerator.Web/Controllers/Test/TestReceiverController.cs +++ b/EnvelopeGenerator.Web/Controllers/Test/TestReceiverController.cs @@ -1,5 +1,5 @@ using DigitalData.Core.API; -using EnvelopeGenerator.Application.Contracts.Services; +using EnvelopeGenerator.Application.Interfaces.Services; using EnvelopeGenerator.Application.Dto.Receiver; using EnvelopeGenerator.Domain.Entities; diff --git a/EnvelopeGenerator.Web/Program.cs b/EnvelopeGenerator.Web/Program.cs index aa2dd259..365d6eff 100644 --- a/EnvelopeGenerator.Web/Program.cs +++ b/EnvelopeGenerator.Web/Program.cs @@ -14,7 +14,7 @@ using EnvelopeGenerator.Application; using DigitalData.EmailProfilerDispatcher; using EnvelopeGenerator.Infrastructure; using EnvelopeGenerator.Web.Sanitizers; -using EnvelopeGenerator.Application.Contracts.Services; +using EnvelopeGenerator.Application.Interfaces.Services; using EnvelopeGenerator.Web.Models.Annotation; using DigitalData.UserManager.DependencyInjection; using EnvelopeGenerator.Web.Middleware; diff --git a/EnvelopeGenerator.Web/Services/EnvelopeOldService.cs b/EnvelopeGenerator.Web/Services/EnvelopeOldService.cs index e2ac9851..731d0e38 100644 --- a/EnvelopeGenerator.Web/Services/EnvelopeOldService.cs +++ b/EnvelopeGenerator.Web/Services/EnvelopeOldService.cs @@ -1,4 +1,4 @@ -using EnvelopeGenerator.Application.Contracts.Services; +using EnvelopeGenerator.Application.Interfaces.Services; using EnvelopeGenerator.CommonServices; using EnvelopeGenerator.Domain.Entities; using System.Text;