Core.Blueprint.DAL/Core.Blueprint.DAL.Infrastrcture/Contracts/IBlueprintRepository.cs
Sergio Matias Urquin 6358f5f199 Add project files.
2025-04-29 18:39:57 -06:00

10 lines
202 B
C#

using Core.Blueprint.Domain.Entities;
namespace Core.Blueprint.DAL.Infrastructure.Contracts
{
public interface IBlueprintRepository : IRepositoryIdentityBase<BlueprintCollection>
{
}
}