This commit is contained in:
Aaron Yarborough 2017-04-06 13:20:46 +01:00
parent b35c4765de
commit 2e13404ca5
3 changed files with 13 additions and 16 deletions

View file

@ -1,8 +1,4 @@
using System; using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BankingBot.Exceptions namespace BankingBot.Exceptions
{ {

View file

@ -1,9 +1,4 @@
using OpenQA.Selenium; using OpenQA.Selenium;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BankingBot.Extensions namespace BankingBot.Extensions
{ {

View file

@ -6,12 +6,18 @@ namespace BankingBot.LoginCredentials
[ProviderIdentifier(Provider.Barclays)] [ProviderIdentifier(Provider.Barclays)]
public class BarclaysLoginCredentials : LoginCredentials public class BarclaysLoginCredentials : LoginCredentials
{ {
public string Surname; public string Surname { get; set; }
public string MembershipNumber;
public string CardNumber; public string MembershipNumber { get; set; }
public string SortCode;
public string AccountNumber; public string CardNumber { get; set; }
public string Passcode;
public string MemorableWord; public string SortCode { get; set; }
public string AccountNumber { get; set; }
public string Passcode { get; set; }
public string MemorableWord { get; set; }
} }
} }