Esempio n. 1
0
 public WalletAppService(IRepository <User, long> userRepo, TransactionsAppService transAppService, IPodClient podClient, IRefreshableAction action)
 {
     this.userRepo        = userRepo;
     this.transAppService = transAppService;
     this.podClient       = podClient;
     this.action          = action;
 }
Esempio n. 2
0
 public PodClient(
     ISettingManager settingManager,
     IHttpClientFactory clientFactory,
     IMapper mapper,
     TransactionsAppService transactionsAppService)
 {
     this.settingManager     = settingManager;
     _clientFactory          = clientFactory;
     _mapper                 = mapper;
     _transactionsAppService = transactionsAppService;
 }