public CryptoController(ApplicationDbContext context, GetCryptoInfoService getCryptoInfoService, UserManager <ApplicationUser> userManager, CryptoTransactionService cryptoTransactionService) { _cryptoTransactionService = cryptoTransactionService; _getCryptoInfoService = getCryptoInfoService; _userManager = userManager; _context = context; }