I want to create a Simple application where User can Register himself with its Credentials like First Name,Last Name and so on..after clicking on the Register Button it bring him on its mail for Authentication of the User where he will have a link and Clicking on that link it will Redirect to the Login Page.I want to Implement this but using 3-tier Architecture in MVC3.I have created the project by choosing the MVC template and named it as presentation and to get BLL and DAL What should i do? I have Created my Model:
public class Register
{
public int Id { get; set; }
public string First_Name { get; set; }
public string Last_Name { get; set; }
public string Email_Address { get; set; }
public bool Accept_Term { get; set; }
public bool Male { get; set; }
public bool Female { get; set;}
public string Current_Location { get; set; }
}