mirror of
https://github.com/mgroves/MonodroidStockPortfolio.git
synced 2024-12-29 11:17:07 +00:00
15 lines
No EOL
482 B
C#
15 lines
No EOL
482 B
C#
namespace MonoStockPortfolio.Presenters
|
|
{
|
|
public interface IMainPresenter
|
|
{
|
|
void Initialize(IMainView view);
|
|
void RefreshPortfolioList();
|
|
void AddNewPortfolio();
|
|
void ViewPortfolio(int portfolioPosition);
|
|
void DeletePortfolio(int itemId);
|
|
void EditPortfolio(int itemId);
|
|
void GotoConfig();
|
|
void ExitApplication();
|
|
int GetPortfolioIdForContextMenu(string selectedPortfolioName);
|
|
}
|
|
} |