// The account number has an integers slice
func (b BankAccount) AccountNumberSlice() []int {
	return helpers.StringToIntSlice(b.AccountNumber)
}
// The sort code has an integers slice
func (b BankAccount) SortCodeSlice() []int {
	return helpers.StringToIntSlice(b.SortCode)
}