public ActionResult <IEnumerable <CheckingAccount> > Post([FromBody] CheckingAccount checkingAccount)
        {
            _checkingAccountService.Save(checkingAccount);

            return(CreatedAtAction(nameof(GetById), new { id = checkingAccount.Id }, checkingAccount));
        }