Esempio n. 1
0
        public UnitOfWork(ICoinManagerContext context)
        {
            _context = context;

            _userRepository = new UserRepository(context);
        }
Esempio n. 2
0
 protected RepositoryBase(ICoinManagerContext context)
 {
     Context = context;
 }
Esempio n. 3
0
 public ExchangeRepository(ICoinManagerContext context) : base(context)
 {
 }
Esempio n. 4
0
 public UserRepository(ICoinManagerContext context) : base(context)
 {
 }