
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.
9 lines
No EOL
172 B
C#
9 lines
No EOL
172 B
C#
using BankingBot.Responses;
|
|
|
|
namespace BankingBot.Contracts
|
|
{
|
|
public interface IProviderLoginManager
|
|
{
|
|
void Login(ILoginCredentials credentials);
|
|
}
|
|
} |