Files
PracticeCalendar/PracticeCalendar.Domain/Common/Interfaces/IRepository.cs
T
2022-10-06 16:53:07 +03:00

9 lines
190 B
C#

using Ardalis.Specification;
namespace PracticeCalendar.Domain.Common.Interfaces
{
public interface IRepository<T> : IRepositoryBase<T> where T : class, IAggregateRoot
{
}
}