Beispiel #1
0
 public CryptoController(ICryptoBL cryptoBL)
 {
     _cryptoBL = cryptoBL;
 }
Beispiel #2
0
 public WalletBL(IWalletRepository repository, IMapper mapper, ICryptoBL cryptoBL)
 {
     _repository = repository;
     _mapper     = mapper;
     _cryptoBL   = cryptoBL;
 }