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 BankingBot.Models;
using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BankingBot.Contracts namespace BankingBot.Contracts
{ {

View file

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

View file

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

View file

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

View file

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

View file

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