9 lines
193 B
C#
9 lines
193 B
C#
using Core.Blueprint.Domain.Entities;
|
|
|
|
namespace Core.Blueprint.DAL.Infrastructure.Contracts
|
|
{
|
|
public interface ISampleItemRepository : IRepositoryIdentityBase<SampleItem>
|
|
{
|
|
}
|
|
}
|