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