public async Task <ActionResult <CryptoAccount> > PostCryptoAccount(CryptoAccount cryptoAccount)
 {
     _cryptoManager.AddCryptoAccount(cryptoAccount);
     return(Ok());
 }