banking-bot/BankingBot/Contracts/IProviderAccountManager.cs
Aaron Yarborough 1e9b41a030 Refactor
2017-07-18 16:02:18 +01:00

12 lines
272 B
C#

using BankingBot.Models;
using System.Collections.Generic;
namespace BankingBot.Contracts
{
public interface IProviderAccountManager
{
IEnumerable<Account> GetAccounts();
IEnumerable<Transaction> GetTransactions(string accountNumber);
}
}