Esempio n. 1
0
 public List <DM_NHAN_VIEN> GetListNhanVien()
 {
     using (var uow = new IVTContext())
     {
         List <DM_NHAN_VIEN> listResult = uow.DM_NHAN_VIEN.ToList();
         return(listResult);
     }
 }
Esempio n. 2
0
 public List<DM_NHAN_VIEN> GetListNhanVien()
 {
     using(var uow = new IVTContext())
     {
         List<DM_NHAN_VIEN> listResult = uow.DM_NHAN_VIEN.ToList();
         return listResult;
     }
 }
Esempio n. 3
0
 public UnitOfWork()
 {
     _context = new IVTContext();
 }
Esempio n. 4
0
 public UnitOfWork(IVTContext context)
 {
     _context = context;
 }
Esempio n. 5
0
 public Repository(IVTContext context)
 {
     this._context = context;
     this._dbSet   = context.Set <TEntity>();
 }