banking-bot/BankingBot/Contracts/IProviderLoginManager.cs
Aaron Yarborough a39b20484f Changed login to not return respose
The login method now throws specific exceptions if something goes wrong during the login process. This is the ideal way for a developer using this API to handle errors.
2017-02-13 13:05:48 +00:00

9 lines
No EOL
172 B
C#

using BankingBot.Responses;
namespace BankingBot.Contracts
{
public interface IProviderLoginManager
{
void Login(ILoginCredentials credentials);
}
}