diff --git a/BankingBot/Helpers/AccountHelpers.cs b/BankingBot/Helpers/AccountHelpers.cs index e94128e..a413736 100644 --- a/BankingBot/Helpers/AccountHelpers.cs +++ b/BankingBot/Helpers/AccountHelpers.cs @@ -11,7 +11,7 @@ namespace BankingBot.Helpers public static string[] SplitCardNumber(string cardNumber) { if (cardNumber.Length != 16) - throw new ArgumentException("Card number was have a length of 16 characters."); + throw new ArgumentException("Card number must have a length of 16 characters."); return new[] { @@ -21,5 +21,18 @@ namespace BankingBot.Helpers cardNumber.Substring(12, 4) }; } + + public static string[] SplitSortCode(string sortcode) + { + if (sortcode.Length != 6) + throw new ArgumentException("Sortcode must have a length of 16 characters."); + + return new[] + { + sortcode.Substring(0, 2), + sortcode.Substring(2, 2), + sortcode.Substring(4, 2) + }; + } } }