MonodroidStockPortfolio/MonoStockPortfolio/Activites/PortfolioScreen/IPortfolioPresenter.cs

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();
}
}