12 lines
272 B
C#
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);
|
|
}
|
|
}
|