예제 #1
0
        private Konto ReadKonto(string iban)
        {
            Konto konto = Konto.ReadFromIban(_dynamicsCrmConnection, iban);

            if (konto == null)
            {
                throw new Exception($"could not read konto with iban {iban}");
            }

            return(konto);
        }