Beispiel #1
0
 public IMessageManager(AKPContext context)
 {
     this.db = context;
 }
Beispiel #2
0
 public GenericRepository(AKPContext _db)
 {
     db         = _db;
     _objectSet = _db.Set <T>();
 }
 public IAdManager(AKPContext context)
 {
     this.db = context;
 }
 public IHolidayManager(AKPContext context)
 {
     this.db = context;
 }
 public ISalaryManager(AKPContext context)
 {
     this.db = context;
 }
Beispiel #6
0
 public IPersonManager(AKPContext context)
 {
     this.db = context;
 }
Beispiel #7
0
 public UnitOfWork()
 {
     this.db = new AKPContext();
 }