Renamed class too...
This commit is contained in:
parent
8480d08a59
commit
68ae058424
1 changed files with 2 additions and 5 deletions
|
@ -1,8 +1,5 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
|
||||||
using System.Text;
|
|
||||||
using System.Threading.Tasks;
|
|
||||||
using BankingBot.Contracts;
|
using BankingBot.Contracts;
|
||||||
using BankingBot.ActionManagers.LoginManagers;
|
using BankingBot.ActionManagers.LoginManagers;
|
||||||
using BankingBot.Models;
|
using BankingBot.Models;
|
||||||
|
@ -13,7 +10,7 @@ using BankingBot.Enums;
|
||||||
|
|
||||||
namespace BankingBot
|
namespace BankingBot
|
||||||
{
|
{
|
||||||
public class Client <T> : IClient
|
public class BankingClient <T> : IClient
|
||||||
where T : IWebDriver
|
where T : IWebDriver
|
||||||
{
|
{
|
||||||
#region Dependencies
|
#region Dependencies
|
||||||
|
@ -31,7 +28,7 @@ namespace BankingBot
|
||||||
get { return LoginCredentials != null; }
|
get { return LoginCredentials != null; }
|
||||||
}
|
}
|
||||||
|
|
||||||
public Client()
|
public BankingClient()
|
||||||
{
|
{
|
||||||
BrowserBot = new BrowserBot<T>();
|
BrowserBot = new BrowserBot<T>();
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue