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