banking-bot/BankingBot/Contracts/IClient.cs
2017-02-13 23:27:36 +00:00

16 lines
No EOL
338 B
C#

using System.Collections.Generic;
using BankingBot.Models;
namespace BankingBot.Contracts
{
public interface IClient
{
void Login(ILoginCredentials credentials);
decimal GetBalance();
IEnumerable<Account> GetAccounts();
IEnumerable<Transaction> GetTransactions(string accountNumber);
}
}