using System.Collections.Generic; using MonoStockPortfolio.Entities; namespace MonoStockPortfolio.Activites.ConfigScreen { public interface IConfigView { void PrepopulateConfiguration(IList allitems, IEnumerable checkeditems); void ShowToastMessage(string message); } }