add support for Db Seeder, Fix GraphQL Generic Usage ...
This commit is contained in:
+2
-2
@@ -23,7 +23,7 @@ namespace xDataService.InMemRepositories
|
||||
/// </summary>
|
||||
/// <typeparam name="TEntity"></typeparam>
|
||||
/// <typeparam name="TKey"></typeparam>
|
||||
public abstract class XBaseInMemoryRepositoy<TEntity, TKey> : IXBaseRepository<TEntity, TKey>
|
||||
public abstract class XBaseInMemoryRepository<TEntity, TKey> : IXBaseRepository<TEntity, TKey>
|
||||
where TEntity : XBaseEntity<TKey>
|
||||
{
|
||||
//
|
||||
@@ -36,7 +36,7 @@ namespace xDataService.InMemRepositories
|
||||
|
||||
//
|
||||
#region Constructor ...
|
||||
public XBaseInMemoryRepositoy(
|
||||
public XBaseInMemoryRepository(
|
||||
XDataServiceConfiguration configuration,
|
||||
IXKeyGenerator<TEntity, TKey> keyGenerator = null,
|
||||
IXBaseRepositoryEvents<TEntity> baseRepositoryEvents = null
|
||||
Reference in New Issue
Block a user