10 lines
256 B
C#
10 lines
256 B
C#
using DigitalData.Core.Abstractions.Infrastructure;
|
|
using EnvelopeGenerator.Domain.Entities;
|
|
|
|
namespace EnvelopeGenerator.Infrastructure.Contracts
|
|
{
|
|
public interface IEnvelopeDocumentRepository : ICRUDRepository<EnvelopeDocument, int>
|
|
{
|
|
}
|
|
}
|