Ejemplo n.º 1
0
 public UnitOfWork(thongkeContext context)
 {
     _context           = context;
     accountRepository  = new AccountRepository(_context);
     chiNhanhRepository = new ChiNhanhRepository(_context);
     dMDaiLyRepository  = new DMDaiLyRepository(_context);
     thongKeRepository  = new ThongKeRepository(_context);
 }
Ejemplo n.º 2
0
 public ChiNhanhRepository(thongkeContext context) : base(context)
 {
 }
Ejemplo n.º 3
0
 public Repository(thongkeContext context)
 {
     _context = context;
 }
Ejemplo n.º 4
0
 public ThongKeRepository(thongkeContext context) : base(context)
 {
 }
Ejemplo n.º 5
0
 public AccountRepository(thongkeContext context) : base(context)
 {
 }
Ejemplo n.º 6
0
 public DMDaiLyRepository(thongkeContext context) : base(context)
 {
 }