mirror of
https://github.com/farcasclaudiu/PracticeCalendar.git
synced 2026-06-22 13:01:22 +03:00
9 lines
190 B
C#
9 lines
190 B
C#
using Ardalis.Specification;
|
|
|
|
namespace PracticeCalendar.Domain.Common.Interfaces
|
|
{
|
|
public interface IRepository<T> : IRepositoryBase<T> where T : class, IAggregateRoot
|
|
{
|
|
}
|
|
}
|