mirror of
https://github.com/mgroves/MonodroidStockPortfolio.git
synced 2025-01-01 11:13:19 +00:00
15 lines
No EOL
514 B
C#
15 lines
No EOL
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();
|
|
}
|
|
} |