banking-bot/BankingBot/Contracts/IClient.cs
2017-01-25 17:44:06 +00:00

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