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