Started adding GetBalance/GetAccounts items
This commit is contained in:
parent
8c6bcc19b2
commit
e5e1153c76
4 changed files with 43 additions and 2 deletions
|
@ -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>
|
||||||
|
|
|
@ -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
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -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();
|
||||||
}
|
}
|
||||||
}
|
}
|
17
BankingBot/Models/Account.cs
Normal file
17
BankingBot/Models/Account.cs
Normal 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; }
|
||||||
|
}
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue