Moved helper function from CardHelpers to AccountHelpers

This commit is contained in:
AaronJamesY 2017-02-10 18:51:03 +00:00
parent 15d54519ca
commit dbc425ea9a
2 changed files with 6 additions and 2 deletions

View file

@ -62,7 +62,7 @@
<Compile Include="Contracts\IScriptManager.cs" /> <Compile Include="Contracts\IScriptManager.cs" />
<Compile Include="Enums\Provider.cs" /> <Compile Include="Enums\Provider.cs" />
<Compile Include="Enums\ResponseStatus.cs" /> <Compile Include="Enums\ResponseStatus.cs" />
<Compile Include="Helpers\CardHelpers.cs" /> <Compile Include="Helpers\AccountHelpers.cs" />
<Compile Include="LoginCredentials\BarclaysLoginCredentials.cs" /> <Compile Include="LoginCredentials\BarclaysLoginCredentials.cs" />
<Compile Include="LoginCredentials\LloydsLoginCredentials.cs" /> <Compile Include="LoginCredentials\LloydsLoginCredentials.cs" />
<Compile Include="LoginCredentials\LoginCredentials.cs" /> <Compile Include="LoginCredentials\LoginCredentials.cs" />

View file

@ -1,8 +1,12 @@
using System; using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BankingBot.Helpers namespace BankingBot.Helpers
{ {
public static class CardHelpers public static class AccountHelpers
{ {
public static string[] SplitCardNumber(string cardNumber) public static string[] SplitCardNumber(string cardNumber)
{ {