using System.Web.Security; using Wierszowki.Models.Interfaces; namespace Wierszowki.Models { public class FormsAuthenticationService : IFormsAuthentication { public void SignIn(string userName, bool createPersistentCookie) { FormsAuthentication.SetAuthCookie(userName, createPersistentCookie); } public void SignOut() { FormsAuthentication.SignOut(); } } }