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