示例#1
0
        public void FillCredits(CreditsInfo info)
        {
            this.FillCDCredits(info);

            if (info.Refinansng != null)
            {
                this.Refinansing.Click();
            }

            //this.Type(this.CreditParameters[3], info.Iban);
            //this.Type(this.CreditParameters[4], info.RefinansingAmount);
        }
示例#2
0
        public void FillCDCredits(CreditsInfo info)
        {
            //this.AddCredit.Click();
            //this.SelectByText(this.Creditor, info.Creditor);
            //this.Type(this.Amount, info.Amount);
            //this.Type(this.CreditParameters[0], info.LoanTerm);
            //this.Type(this.CreditParameters[1], info.RemainingInstallments);
            //this.Type(this.CreditParameters[2], info.MonthlyAmount);
            //this.SelectByText(this.CreditType, info.CreditType);

            if (info.Distraint != null)
            {
                this.Distraint.Click();
            }
        }
示例#3
0
 private void LoadCreditsInfoFile(string itemDatFilename)
 {
     this.itemDatFilename = itemDatFilename;
     this.itemDat         = new CreditsInfo(itemDatFilename);
 }