Files
xAiModels/Providers/Entities/XAiProjectEFRepository.cs
T
2026-07-26 21:19:40 +03:30

27 lines
827 B
C#

using System;
using xAiModels.Interfaces.Entities;
using xAiModels.Models.Entities;
using xDataService.Configuration;
using xDataService.Db;
using xDataService.Interfaces;
using xDataService.Providers;
namespace xAiModels.Providers.Entities
{
public class XAiProjectEFRepository<TContext> : XBaseEFRepository<XAiProject, Guid, TContext>, IXAiProjectRepository
where TContext : XDbContext
{
public XAiProjectEFRepository(
IXUnitOfWorks<TContext> unitOfWorks,
XDataServiceConfiguration configuration,
IXAiProjectKeyGenerator keyGenerator = null,
IXAiProjectRepositoryEvents baseRepositoryEvents = null
) : base(
unitOfWorks,
configuration,
keyGenerator,
baseRepositoryEvents
)
{ }
}
}