UserService constructor

UserService(
  1. InMemoryRepository<User, String> _repo,
  2. EventBus _events,
  3. TransactionManager _transactions
)

Creates a service backed by repo, events, and transactions.

Implementation

UserService(this._repo, this._events, this._transactions);