mirror of https://github.com/abpframework/abp.git
6 changed files with 27 additions and 27 deletions
@ -0,0 +1,14 @@ |
|||
using System; |
|||
using Microsoft.Extensions.DependencyInjection; |
|||
using Volo.Abp.DependencyInjection; |
|||
|
|||
namespace Volo.Abp.MemoryDb.DependencyInjection |
|||
{ |
|||
public class AbpMemoryDbContextRegistrationOptions : AbpCommonDbContextRegistrationOptions, IAbpMemoryDbContextRegistrationOptionsBuilder |
|||
{ |
|||
public AbpMemoryDbContextRegistrationOptions(Type originalDbContextType, IServiceCollection services) |
|||
: base(originalDbContextType, services) |
|||
{ |
|||
} |
|||
} |
|||
} |
|||
@ -0,0 +1,9 @@ |
|||
using Volo.Abp.DependencyInjection; |
|||
|
|||
namespace Volo.Abp.MemoryDb.DependencyInjection |
|||
{ |
|||
public interface IAbpMemoryDbContextRegistrationOptionsBuilder : IAbpCommonDbContextRegistrationOptionsBuilder |
|||
{ |
|||
|
|||
} |
|||
} |
|||
@ -1,9 +0,0 @@ |
|||
using Volo.Abp.DependencyInjection; |
|||
|
|||
namespace Volo.Abp.MemoryDb.DependencyInjection |
|||
{ |
|||
public interface IMemoryDbContextRegistrationOptionsBuilder : IAbpCommonDbContextRegistrationOptionsBuilder |
|||
{ |
|||
|
|||
} |
|||
} |
|||
@ -1,14 +0,0 @@ |
|||
using System; |
|||
using Microsoft.Extensions.DependencyInjection; |
|||
using Volo.Abp.DependencyInjection; |
|||
|
|||
namespace Volo.Abp.MemoryDb.DependencyInjection |
|||
{ |
|||
public class MemoryDbContextRegistrationOptions : AbpCommonDbContextRegistrationOptions, IMemoryDbContextRegistrationOptionsBuilder |
|||
{ |
|||
public MemoryDbContextRegistrationOptions(Type originalDbContextType, IServiceCollection services) |
|||
: base(originalDbContextType, services) |
|||
{ |
|||
} |
|||
} |
|||
} |
|||
Loading…
Reference in new issue