Refactoring
This commit is contained in:
parent
a39b20484f
commit
f5e9908e83
12 changed files with 5 additions and 63 deletions
|
@ -2,7 +2,6 @@
|
|||
using BankingBot.Contracts;
|
||||
using BankingBot.Enums;
|
||||
using BankingBot.LoginCredentials;
|
||||
using BankingBot.Responses;
|
||||
using System.Collections.Generic;
|
||||
using BankingBot.ScriptManagement;
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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" />
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -1,7 +1,5 @@
|
|||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using System.Collections.Generic;
|
||||
using BankingBot.Models;
|
||||
using BankingBot.Responses;
|
||||
|
||||
namespace BankingBot.Contracts
|
||||
{
|
||||
|
|
|
@ -1,6 +1,4 @@
|
|||
using BankingBot.Responses;
|
||||
|
||||
namespace BankingBot.Contracts
|
||||
namespace BankingBot.Contracts
|
||||
{
|
||||
public interface ILoginManager
|
||||
{
|
||||
|
|
|
@ -1,6 +1,4 @@
|
|||
using BankingBot.Responses;
|
||||
|
||||
namespace BankingBot.Contracts
|
||||
namespace BankingBot.Contracts
|
||||
{
|
||||
public interface IProviderLoginManager
|
||||
{
|
||||
|
|
|
@ -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
|
||||
{
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
|
@ -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; }
|
||||
}
|
||||
}
|
|
@ -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; }
|
||||
}
|
||||
}
|
Loading…
Add table
Reference in a new issue