using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ShoopNCook.Controllers { public class MorePageController { private readonly IApp app; public MorePageController(IApp app) { this.app = app; } public void Logout() { app.Notifier.Notice("You have been loged out."); app.ForceLogin(); } } }