Exemple #1
0
        public Cuenta TraerCuentas(int idCliente)
        {
            Cuenta resultado = _cuentaMapper.GetCuenta(idCliente);

            if (resultado == null)
            {
                throw new ElClienteNoTieneCuentasException();
            }
            else
            {
                return(resultado);
            }
        }