banking-bot/BankingBot/ActionManagers/AccountManagers/AccountManager.cs
2017-01-25 20:10:59 +00:00

23 lines
531 B
C#

using BankingBot.Contracts;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using BankingBot.Models;
namespace BankingBot.ActionManagers.AccountManagers
{
public class AccountManager : ActionManager, IAccountManager
{
public AccountManager(IBrowserBot browserBot)
: base(browserBot)
{
}
public IEnumerable<Account> GetAccounts()
{
throw new NotImplementedException();
}
}
}