Started adding GetBalance/GetAccounts items

This commit is contained in:
Aaron Yarborough 2017-01-25 17:44:06 +00:00
parent 8c6bcc19b2
commit e5e1153c76
4 changed files with 43 additions and 2 deletions

View file

@ -63,6 +63,7 @@
<Compile Include="LoginCredentials\LoginCredentials.cs" /> <Compile Include="LoginCredentials\LoginCredentials.cs" />
<Compile Include="LoginManagers\LloydsLoginManager.cs" /> <Compile Include="LoginManagers\LloydsLoginManager.cs" />
<Compile Include="LoginManagers\LoginManager.cs" /> <Compile Include="LoginManagers\LoginManager.cs" />
<Compile Include="Models\Account.cs" />
<Compile Include="Properties\AssemblyInfo.cs" /> <Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Responses\LoginResponse.cs" /> <Compile Include="Responses\LoginResponse.cs" />
</ItemGroup> </ItemGroup>

View file

@ -5,6 +5,7 @@ using System.Text;
using System.Threading.Tasks; using System.Threading.Tasks;
using BankingBot.Contracts; using BankingBot.Contracts;
using BankingBot.LoginManagers; using BankingBot.LoginManagers;
using BankingBot.Models;
using OpenQA.Selenium; using OpenQA.Selenium;
namespace BankingBot namespace BankingBot
@ -25,11 +26,25 @@ namespace BankingBot
_loginManager = new LoginManager(BrowserBot); _loginManager = new LoginManager(BrowserBot);
} }
#region Actions
public void Login(ILoginCredentials credentials) public void Login(ILoginCredentials credentials)
{ {
this.LoginCredentials = credentials; LoginCredentials = credentials;
_loginManager.Login(credentials); _loginManager.Login(credentials);
} }
public decimal GetBalance()
{
throw new NotImplementedException();
}
public IEnumerable<Account> GetAccounts()
{
throw new NotImplementedException();
}
#endregion
} }
} }

View file

@ -1,7 +1,15 @@
namespace BankingBot.Contracts using System.Collections;
using System.Collections.Generic;
using BankingBot.Models;
namespace BankingBot.Contracts
{ {
public interface IClient public interface IClient
{ {
void Login(ILoginCredentials credentials); void Login(ILoginCredentials credentials);
decimal GetBalance();
IEnumerable<Account> GetAccounts();
} }
} }

View file

@ -0,0 +1,17 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BankingBot.Models
{
public class Account
{
public string SortCode { get; set; }
public string AccountNumber { get; set; }
public string Name { get; set; }
}
}