14 lines
No EOL
265 B
C#
14 lines
No EOL
265 B
C#
using System.Collections.Generic;
|
|
using BankingBot.Models;
|
|
|
|
namespace BankingBot.Contracts
|
|
{
|
|
public interface IClient
|
|
{
|
|
void Login(ILoginCredentials credentials);
|
|
|
|
decimal GetBalance();
|
|
|
|
IEnumerable<Account> GetAccounts();
|
|
}
|
|
} |