From 2e13404ca5aba132d6fc3d112c4988d90f6fe4c3 Mon Sep 17 00:00:00 2001 From: Aaron Yarborough Date: Thu, 6 Apr 2017 13:20:46 +0100 Subject: [PATCH] Refactor --- .../Exceptions/InvalidCredentialsException.cs | 4 ---- .../Extensions/IWebElementExtensions.cs | 5 ----- .../BarclaysLoginCredentials.cs | 20 ++++++++++++------- 3 files changed, 13 insertions(+), 16 deletions(-) diff --git a/BankingBot/Exceptions/InvalidCredentialsException.cs b/BankingBot/Exceptions/InvalidCredentialsException.cs index 59ca81d..96d1123 100644 --- a/BankingBot/Exceptions/InvalidCredentialsException.cs +++ b/BankingBot/Exceptions/InvalidCredentialsException.cs @@ -1,8 +1,4 @@ using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; namespace BankingBot.Exceptions { diff --git a/BankingBot/Extensions/IWebElementExtensions.cs b/BankingBot/Extensions/IWebElementExtensions.cs index 44f1aa3..e9a14ee 100644 --- a/BankingBot/Extensions/IWebElementExtensions.cs +++ b/BankingBot/Extensions/IWebElementExtensions.cs @@ -1,9 +1,4 @@ using OpenQA.Selenium; -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; namespace BankingBot.Extensions { diff --git a/BankingBot/LoginCredentials/BarclaysLoginCredentials.cs b/BankingBot/LoginCredentials/BarclaysLoginCredentials.cs index ac87304..a60ebde 100644 --- a/BankingBot/LoginCredentials/BarclaysLoginCredentials.cs +++ b/BankingBot/LoginCredentials/BarclaysLoginCredentials.cs @@ -6,12 +6,18 @@ namespace BankingBot.LoginCredentials [ProviderIdentifier(Provider.Barclays)] public class BarclaysLoginCredentials : LoginCredentials { - public string Surname; - public string MembershipNumber; - public string CardNumber; - public string SortCode; - public string AccountNumber; - public string Passcode; - public string MemorableWord; + public string Surname { get; set; } + + public string MembershipNumber { get; set; } + + public string CardNumber { get; set; } + + public string SortCode { get; set; } + + public string AccountNumber { get; set; } + + public string Passcode { get; set; } + + public string MemorableWord { get; set; } } }