Exemple #1
0
 public ExpertsController(
     IExpertService expertService,
     EthereumClient ethereumClient,
     ICountryRepository countryRepository,
     IUserRepository userRepository)
 {
     _ethereumClient    = ethereumClient;
     _expertService     = expertService;
     _ethereumClient    = ethereumClient;
     _countryRepository = countryRepository;
     _userRepository    = userRepository;
 }
 public AdminController(
     IExpertService expertService,
     IAdminService adminService,
     EthereumClient ethereumClient,
     IAuthenticationService authenticationService,
     IUserService userService,
     IMessageSession messageSession)
 {
     _adminService          = adminService;
     _ethereumClient        = ethereumClient;
     _expertService         = expertService;
     _authenticationService = authenticationService;
     _userService           = userService;
     _messageSession        = messageSession;
 }
 public ExpertController(IExpertService expertService)
 {
     _expertService = expertService;
 }
Exemple #4
0
 public ExpertAreasUpdatingSaga(IExpertService expertService, IEthereumTransactionService transactionService)
 {
     _expertService      = expertService;
     _transactionService = transactionService;
 }