Merged rename-client into main

This commit is contained in:
AaronJamesY 2017-02-12 22:21:41 +00:00
commit fd77db14b0

View file

@ -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>();