Example #1
0
 public UserRepository(NinjaDbContext context, IUnitOfWork uow)
 {
     this.uow = uow;
     _context = context;
 }
Example #2
0
 public UnitOfWork(NinjaDbContext context)
 {
     _context = context;
 }
 public RefreshTokenRepository(NinjaDbContext context)
 {
     _context = context;
 }