Files
qrcodeService/Domain/SeedWork/IRepository.cs
2021-02-23 09:51:50 +08:00

8 lines
146 B
C#

namespace Domain.SeedWork
{
public interface IRepository<T> where T : IAggregateRoot
{
IUnitOfWork UnitOfWork { get; }
}
}