26 lines
757 B
C#
26 lines
757 B
C#
using System;
|
|
using xDataService.Configuration;
|
|
using xDataService.Providers;
|
|
using xDataService.Interfaces;
|
|
using xServices.Databases;
|
|
using xServices.Interfaces;
|
|
using xServices.Models.Entities;
|
|
|
|
namespace xServices.Providers
|
|
{
|
|
public class XTestEFRepository : XBaseEFRepository<XTest, Guid, XApiDbContext>, IXTestRepository
|
|
{
|
|
public XTestEFRepository(
|
|
IXUnitOfWorks<XApiDbContext> unitOfWorks,
|
|
XDataServiceConfiguration configuration,
|
|
IXTestKeyGenerator keyGenerator = null,
|
|
IXTestRepositoryEvents baseRepositoryEvents = null
|
|
) : base(
|
|
unitOfWorks,
|
|
configuration,
|
|
keyGenerator,
|
|
baseRepositoryEvents
|
|
)
|
|
{ }
|
|
}
|
|
} |