using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using BankingBot.Contracts; using BankingBot.LoginManagers; using BankingBot.Models; using OpenQA.Selenium; namespace BankingBot { public class Client : IClient where T : IWebDriver { #region Dependencies private readonly ILoginManager _loginManager; protected readonly IBrowserBot BrowserBot; #endregion public ILoginCredentials LoginCredentials { get; private set; } public bool IsLoggedIn { get { return LoginCredentials != null; } } public Client() { BrowserBot = new BrowserBot(); _loginManager = new LoginManager(BrowserBot); } #region Actions public void Login(ILoginCredentials credentials) { _loginManager.Login(credentials); LoginCredentials = credentials; } public decimal GetBalance() { throw new NotImplementedException(); } public IEnumerable GetAccounts() { throw new NotImplementedException(); } #endregion } }