Exemplo n.º 1
0
 public UnitOfWork(SqlServerDbContext ctx)
 {
     _ctx         = ctx;
     izinTanimDal = new IzinTanimDal(_ctx);
     izinTipiDal  = new IzinTipiDal(_ctx);
     izinTalepDal = new IzinTalepDal(_ctx);
 }
Exemplo n.º 2
0
 public Repository(SqlServerDbContext ctx)
 {
     _ctx       = ctx;
     this.dbSet = _ctx.Set <T>();
 }
Exemplo n.º 3
0
 public IzinTanimDal(SqlServerDbContext ctx) : base(ctx)
 {
     _ctx = ctx;
 }