CompetitionAPI_dotnet/Competition.IBLL/IBaseService.cs

9 lines
157 B
C#

using Competition.IDAL;
namespace Competition.IBLL
{
public interface IBaseService<T, TKey> : IBaseRepository<T, TKey> where T : class
{
}
}