Prepare xStringService except Controllers ...
This commit is contained in:
@@ -7,10 +7,10 @@ using xStringService.Models.Entities;
|
||||
|
||||
namespace xStringService.Providers.Entities
|
||||
{
|
||||
public class XStringEFRepository<TContext> : XBaseEFRepository<XString, int, TContext>
|
||||
public class XStringEFRepository<TContext> : XBaseEFRepository<XString, int, TContext>, IXStringRepository
|
||||
where TContext : XDbContext
|
||||
{
|
||||
protected XStringEFRepository(
|
||||
public XStringEFRepository(
|
||||
IXUnitOfWorks<TContext> unitOfWorks,
|
||||
XDataServiceConfiguration configuration,
|
||||
IXStringKeyGenerator keyGenerator = null,
|
||||
|
||||
+2
-2
@@ -5,9 +5,9 @@ using xStringService.Models.Entities;
|
||||
|
||||
namespace xStringService.Providers.Entities
|
||||
{
|
||||
public class XStringInMemoeryRepository : XBaseInMemoryRepository<XString, int>, IXStringRepository
|
||||
public class XStringInMemoryRepository : XBaseInMemoryRepository<XString, int>, IXStringRepository
|
||||
{
|
||||
public XStringInMemoeryRepository(
|
||||
public XStringInMemoryRepository(
|
||||
XDataServiceConfiguration configuration,
|
||||
IXStringKeyGenerator keyGenerator = null,
|
||||
IXStringRepositoryEvents baseRepositoryEvents = null
|
||||
Reference in New Issue
Block a user