Refactoring

This commit is contained in:
Aaron Yarborough 2017-02-13 13:13:27 +00:00
parent a39b20484f
commit f5e9908e83
12 changed files with 5 additions and 63 deletions

View file

@ -2,7 +2,6 @@
using BankingBot.Contracts;
using BankingBot.Enums;
using BankingBot.LoginCredentials;
using BankingBot.Responses;
using System.Collections.Generic;
using BankingBot.ScriptManagement;

View file

@ -1,13 +1,10 @@
using System;
using System.Collections.Generic;
using System.Text.RegularExpressions;
using BankingBot.Attributes;
using BankingBot.Contracts;
using BankingBot.LoginCredentials;
using OpenQA.Selenium;
using BankingBot.Responses;
using BankingBot.Enums;
using BankingBot.ScriptManagement;
using BankingBot.Urls;
using BankingBot.Exceptions;

View file

@ -1,8 +1,5 @@
using System;
using System.Linq;
using BankingBot.Attributes;
using BankingBot.Contracts;
using BankingBot.Responses;
using BankingBot.ScriptManagement;
namespace BankingBot.ActionManagers.LoginManagers

View file

@ -77,8 +77,6 @@
<Compile Include="ActionManagers\LoginManagers\LoginManager.cs" />
<Compile Include="Models\Account.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Responses\LoginResponse.cs" />
<Compile Include="Responses\Response.cs" />
<Compile Include="ScriptManagement\ScriptBundles.cs" />
<Compile Include="ScriptManagement\ScriptManager.cs" />
<Compile Include="Urls\LloydsUrls.cs" />

View file

@ -5,7 +5,6 @@ using BankingBot.ActionManagers.LoginManagers;
using BankingBot.Models;
using OpenQA.Selenium;
using BankingBot.ActionManagers.AccountManagers;
using BankingBot.Responses;
using BankingBot.Enums;
namespace BankingBot

View file

@ -1,7 +1,5 @@
using System.Collections;
using System.Collections.Generic;
using System.Collections.Generic;
using BankingBot.Models;
using BankingBot.Responses;
namespace BankingBot.Contracts
{

View file

@ -1,6 +1,4 @@
using BankingBot.Responses;
namespace BankingBot.Contracts
namespace BankingBot.Contracts
{
public interface ILoginManager
{

View file

@ -1,6 +1,4 @@
using BankingBot.Responses;
namespace BankingBot.Contracts
namespace BankingBot.Contracts
{
public interface IProviderLoginManager
{

View file

@ -1,10 +1,4 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using BankingBot.Attributes;
using BankingBot.Contracts;
using BankingBot.Attributes;
namespace BankingBot.LoginCredentials
{

View file

@ -1,9 +1,4 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using BankingBot.Attributes;
using BankingBot.Attributes;
using BankingBot.Contracts;
using BankingBot.Enums;

View file

@ -1,14 +0,0 @@
using BankingBot.Enums;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BankingBot.Responses
{
public class LoginResponse : Response
{
Provider Provider { get; }
}
}

View file

@ -1,17 +0,0 @@
using BankingBot.Contracts;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using BankingBot.Enums;
namespace BankingBot.Responses
{
public class Response : IResponse
{
public Exception Exception { get; set; }
public ResponseStatus Status { get; set; }
}
}