public async Task <DigitalAccountModel> GetByIdAsync(int digitalAccountId)
        {
            DigitalAccountModel digitalAccount = await _digitalAccountRepository.GetByIdAsync(digitalAccountId);

            if (digitalAccount == null)
            {
                throw new KeyNotFoundException("Conta não localizada");
            }

            return(digitalAccount);
        }
        public async Task <DigitalAccountModel> GetByIdAsync(int digitalAccountId)
        {
            DigitalAccountModel digitalAccount = await _digitalAccountRepository.GetByIdAsync(digitalAccountId);

            return(digitalAccount);
        }