using System; namespace DotNetMock.Examples.MailingList{ public interface IListAction { void ApplyTo(string email, string name); } }