Step 1 : Create MVC project
Step 2 : Connent Database from Servier Explorer
Step 3 : Add connectionString

     <connectionString>
              <add name="UniversityDBConnection" connectionString="Data Source=.;Initial Catalog=UniversityDB;Integrated Security=True" providerName="System.Data.SqlClient"/>
    </connectionString>

Step 4 : Create DBConnection.cs class

Step 5 : Create User.cs class with method.
Step 6: Create UserSignature.cs
Step 7: Create UserDAL.cs
Step 8 : Create UsersController.cs
Step 9 : Create User views
Step 10 : Change RouteConfig
            defaults: new { controller = "Users", action = "View_Users", id = UrlParameter.Optional }