public UnitOfWork(ICoinManagerContext context) { _context = context; _userRepository = new UserRepository(context); }
protected RepositoryBase(ICoinManagerContext context) { Context = context; }
public ExchangeRepository(ICoinManagerContext context) : base(context) { }
public UserRepository(ICoinManagerContext context) : base(context) { }