mirror of
https://github.com/mgroves/MonodroidStockPortfolio.git
synced 2025-01-04 03:00:20 +00:00
15 lines
514 B
C#
15 lines
514 B
C#
|
using System.Collections.Generic;
|
||
|
|
||
|
namespace MonoStockPortfolio.Activites.PortfolioScreen
|
||
|
{
|
||
|
public interface IPortfolioPresenter
|
||
|
{
|
||
|
void Initialize(IPortfolioView view, long thisPortofolioId);
|
||
|
void AddNewPosition();
|
||
|
void MenuOptionSelected(string optionName);
|
||
|
IEnumerable<MenuOption> GetOptions();
|
||
|
IEnumerable<MenuOption> GetContextItems();
|
||
|
void ContextOptionSelected(string contextName, int positionId);
|
||
|
void RefreshPositions();
|
||
|
}
|
||
|
}
|