banking-bot/BankingBot/Contracts/IClient.cs
Aaron Yarborough f5e9908e83 Refactoring
2017-02-13 13:13:27 +00:00

14 lines
No EOL
265 B
C#

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