示例#1
0
 public AnalyticsManager(UnitOfWork unitOfWork, KarateContext context)
 {
     this.unitOfWork = unitOfWork;
     this.data       = context;
 }
示例#2
0
 public GenericRepository(KarateContext context)
 {
     this.context = context;
     this.dbSet   = context.Set <TEntity>();
 }
示例#3
0
 public UnitOfWork(KarateContext context)
 {
     this.context = context;
 }