8 lines
146 B
C#
8 lines
146 B
C#
namespace Domain.SeedWork
|
|
{
|
|
public interface IRepository<T> where T : IAggregateRoot
|
|
{
|
|
IUnitOfWork UnitOfWork { get; }
|
|
}
|
|
}
|