Moved helper function from CardHelpers to AccountHelpers
This commit is contained in:
parent
15d54519ca
commit
dbc425ea9a
2 changed files with 6 additions and 2 deletions
|
@ -62,7 +62,7 @@
|
|||
<Compile Include="Contracts\IScriptManager.cs" />
|
||||
<Compile Include="Enums\Provider.cs" />
|
||||
<Compile Include="Enums\ResponseStatus.cs" />
|
||||
<Compile Include="Helpers\CardHelpers.cs" />
|
||||
<Compile Include="Helpers\AccountHelpers.cs" />
|
||||
<Compile Include="LoginCredentials\BarclaysLoginCredentials.cs" />
|
||||
<Compile Include="LoginCredentials\LloydsLoginCredentials.cs" />
|
||||
<Compile Include="LoginCredentials\LoginCredentials.cs" />
|
||||
|
|
|
@ -1,8 +1,12 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace BankingBot.Helpers
|
||||
{
|
||||
public static class CardHelpers
|
||||
public static class AccountHelpers
|
||||
{
|
||||
public static string[] SplitCardNumber(string cardNumber)
|
||||
{
|
Loading…
Add table
Reference in a new issue