auction improvements
This commit is contained in:
parent
3197542c83
commit
1e2856c565
|
|
@ -1,9 +1,15 @@
|
||||||
using Mango.Nop.Core.Interfaces;
|
using Mango.Nop.Core.Interfaces;
|
||||||
|
using Nop.Data;
|
||||||
|
|
||||||
namespace Mango.Nop.Core.Repositories;
|
namespace Mango.Nop.Core.Repositories;
|
||||||
|
|
||||||
|
|
||||||
public class MgDbContextBase : IMgDbContextBase
|
public class MgDbContextBase : IMgDbContextBase
|
||||||
{
|
{
|
||||||
|
protected INopDataProvider DataProvider;
|
||||||
|
|
||||||
|
public MgDbContextBase(INopDataProvider dataProvider)
|
||||||
|
{
|
||||||
|
DataProvider = dataProvider;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -0,0 +1,15 @@
|
||||||
|
using Mango.Nop.Core.Interfaces;
|
||||||
|
using Nop.Core;
|
||||||
|
using Nop.Core.Caching;
|
||||||
|
using Nop.Core.Configuration;
|
||||||
|
using Nop.Core.Events;
|
||||||
|
using Nop.Data;
|
||||||
|
|
||||||
|
namespace Mango.Nop.Core.Repositories;
|
||||||
|
|
||||||
|
public class MgDbTableBase<TEntity>: EntityRepository<TEntity>, IMgDbTableBase where TEntity : BaseEntity
|
||||||
|
{
|
||||||
|
public MgDbTableBase(IEventPublisher eventPublisher, INopDataProvider dataProvider, IShortTermCacheManager shortTermCacheManager, IStaticCacheManager staticCacheManager, AppSettings appSettings) : base(eventPublisher, dataProvider, shortTermCacheManager, staticCacheManager, appSettings)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue