This commit is contained in:
Aaron Yarborough 2017-07-18 16:02:18 +01:00
parent 940ef30401
commit 1e9b41a030
6 changed files with 5 additions and 28 deletions

View file

@ -1,9 +1,5 @@
using BankingBot.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BankingBot.Contracts
{

View file

@ -1,9 +1,5 @@
using BankingBot.Enums;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BankingBot.Contracts
{

View file

@ -1,11 +1,7 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BankingBot.Enums
namespace BankingBot.Enums
{
// TODO: "WHAT DO ALL THESE MEAN!?"
// Make it more obvious what each flag represents
public enum TransactionType
{
BGC,

View file

@ -8,8 +8,7 @@ namespace BankingBot.Extensions
{
try
{
element.FindElement(by);
return true;
return element.FindElement(by) != null;
}
catch (NoSuchElementException)
{

View file

@ -1,8 +1,4 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BankingBot.Helpers
{

View file

@ -1,10 +1,4 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BankingBot.Models
namespace BankingBot.Models
{
public class Account
{