banking-bot/BankingBot/Contracts/IClient.cs
2017-01-25 20:29:53 +00:00

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();
}
}