banking-bot/BankingBot/Contracts/IAccountManager.cs
2017-01-25 20:10:59 +00:00

10 lines
191 B
C#

using BankingBot.Models;
using System.Collections.Generic;
namespace BankingBot.Contracts
{
public interface IAccountManager
{
IEnumerable<Account> GetAccounts();
}
}