Example #1
0
        public UnitOfWork(ICoinManagerContext context)
        {
            _context = context;

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