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