public IActionResult PostDebit(int id, [FromBody] Money money)
        {
            var checkingAccount = _checkingAccountService.GetById(id);

            if (checkingAccount == null)
            {
                return(NotFound());
            }

            try
            {
                _checkingAccountService.Debit(checkingAccount, money.Value);

                return(NoContent());
            }
            catch (Exception e)
            {
                return(BadRequest($"Error: {e.Message}"));
            }
        }