mirror of
https://github.com/mgroves/MonodroidStockPortfolio.git
synced 2025-01-04 03:00:20 +00:00
14 lines
No EOL
415 B
C#
14 lines
No EOL
415 B
C#
using System.Collections.Generic;
|
|
|
|
namespace MonoStockPortfolio.Presenters
|
|
{
|
|
public interface IMainView
|
|
{
|
|
void RefreshList(IList<string> portfolioNames);
|
|
void StartAddPortfolioActivity();
|
|
void StartViewPortfolioActivity(long portfolioId);
|
|
void StartEditPortfolioActivity(int itemId);
|
|
void StartConfigActivity();
|
|
void ExitApplication();
|
|
}
|
|
} |