refactor(Entities.Annotation): rename it to ElementAnnotation to prevent name conflicts.

This commit is contained in:
2025-10-23 10:51:19 +02:00
parent d8cbdb0c65
commit 0e7b120ded
5 changed files with 8 additions and 8 deletions

View File

@@ -9,13 +9,13 @@ namespace EnvelopeGenerator.Application.Common.Notifications.RemoveSignature.Han
/// </summary>
public class RemoveAnnotationHandler : INotificationHandler<RemoveSignatureNotification>
{
private readonly IRepository<Annotation> _repo;
private readonly IRepository<ElementAnnotation> _repo;
/// <summary>
///
/// </summary>
/// <param name="repository"></param>
public RemoveAnnotationHandler(IRepository<Annotation> repository)
public RemoveAnnotationHandler(IRepository<ElementAnnotation> repository)
{
_repo = repository;
}