26 lines
815 B
C#
26 lines
815 B
C#
using xDataService.Configuration;
|
|
using xDataService.Db;
|
|
using xDataService.Interfaces;
|
|
using xDataService.Providers;
|
|
using xStringService.Interfaces.Entities;
|
|
using xStringService.Models.Entities;
|
|
|
|
namespace xStringService.Providers.Entities
|
|
{
|
|
public class XStringEFRepository<TContext> : XBaseEFRepository<XString, int, TContext>, IXStringRepository
|
|
where TContext : XDbContext
|
|
{
|
|
public XStringEFRepository(
|
|
IXUnitOfWorks<TContext> unitOfWorks,
|
|
XDataServiceConfiguration configuration,
|
|
IXStringKeyGenerator keyGenerator = null,
|
|
IXStringRepositoryEvents baseRepositoryEvents = null
|
|
) : base(
|
|
unitOfWorks,
|
|
configuration,
|
|
keyGenerator,
|
|
baseRepositoryEvents
|
|
)
|
|
{ }
|
|
}
|
|
} |