Refactor
This commit is contained in:
parent
940ef30401
commit
1e9b41a030
6 changed files with 5 additions and 28 deletions
|
@ -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
|
||||
{
|
||||
|
|
|
@ -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
|
||||
{
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -8,8 +8,7 @@ namespace BankingBot.Extensions
|
|||
{
|
||||
try
|
||||
{
|
||||
element.FindElement(by);
|
||||
return true;
|
||||
return element.FindElement(by) != null;
|
||||
}
|
||||
catch (NoSuchElementException)
|
||||
{
|
||||
|
|
|
@ -1,8 +1,4 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace BankingBot.Helpers
|
||||
{
|
||||
|
|
|
@ -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
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue