Ejemplo n.º 1
0
        public IActionResult CheckAlerts()
        {
            var walletList = _walletRepository.GetAll().ToList();

            foreach (var cryptoWallet in walletList)
            {
                _walletOperationsService.GetAlerts(cryptoWallet);
            }

            return(Ok());
        }