im building a big app for a school project, separated in a few layers, being the presentation layer (the web server using asp mvc 4), logic and data layer.
Im kinda new to asp mvc, and im stuck with an idea about register/login mechanics. So far using the simplemembership and websecurity from the new project template seems really good. But here comes the problem: the above mentioned needs to connect to a database to do its job, while the web server wont be using the database directly, but the logic layer api methods to validate and create new users. What should i use to achieve a similar functionality as WebSecurity to manage all the login/register and session related stuff?