16 lines
444 B
C#
16 lines
444 B
C#
using System.Linq.Expressions;
|
|
using System.Transactions;
|
|
using Mango.Nop.Data.Interfaces;
|
|
using Nop.Core;
|
|
using Nop.Core.Caching;
|
|
using Nop.Core.Configuration;
|
|
using Nop.Core.Events;
|
|
|
|
namespace Mango.Nop.Data.Repositories;
|
|
|
|
public abstract class MgDalBase<TDbContext> : IMgDalBase<TDbContext> where TDbContext : IMgDbContextBase
|
|
{
|
|
public string Name { get; }
|
|
public TDbContext Context { get; }
|
|
public Mutex MutextLock { get; }
|
|
} |