15 lines
570 B
C#
15 lines
570 B
C#
using System.Linq.Expressions;
|
|
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 DalBase<TEntity> : EntityRepository<TEntity> where TEntity : BaseEntity
|
|
{
|
|
public DalBase(IEventPublisher eventPublisher, INopDataProvider dataProvider, IShortTermCacheManager shortTermCacheManager, IStaticCacheManager staticCacheManager, AppSettings appSettings) : base(eventPublisher, dataProvider, shortTermCacheManager, staticCacheManager, appSettings)
|
|
{
|
|
}
|
|
} |