banking-bot/BankingBot/ActionManagers/LoginManagers/LoginManager.cs
2017-01-25 20:29:53 +00:00

23 lines
712 B
C#

using System;
using System.Linq;
using BankingBot.Attributes;
using BankingBot.Contracts;
using BankingBot.Responses;
namespace BankingBot.ActionManagers.LoginManagers
{
public class LoginManager : ActionManager, ILoginManager
{
public LoginManager(IBrowserBot browserBot)
: base(browserBot)
{ }
public Response Login(ILoginCredentials credentials)
{
var provLoginManagerType = GetActionTypeFromInterface(credentials, typeof(IProviderLoginManager));
var provLoginManager = (IProviderLoginManager)Activator.CreateInstance(provLoginManagerType, BrowserBot);
return provLoginManager.Login(credentials);
}
}
}