using System; namespace NPetshop.Presentation { /// /// Summary description for IController. /// public interface IController { string CurrentView { get; set; } string NextView { get; set; } } }