mirror of
https://github.com/mgroves/MonodroidStockPortfolio.git
synced 2025-01-04 03:00:20 +00:00
14 lines
438 B
C#
14 lines
438 B
C#
|
using System.Collections.Generic;
|
|||
|
using MonoStockPortfolio.Entities;
|
|||
|
|
|||
|
namespace MonoStockPortfolio.Activites.EditPortfolioScreen
|
|||
|
{
|
|||
|
public interface IEditPortfolioView
|
|||
|
{
|
|||
|
void SetTitle(string title);
|
|||
|
void PopulateForm(Portfolio portfolio);
|
|||
|
void ShowSaveSuccessMessage(string message);
|
|||
|
void GoBackToMainActivity();
|
|||
|
void ShowValidationErrors(IEnumerable<string> errors);
|
|||
|
}
|
|||
|
}
|