Public Class ProductController      Inherits System.Web.Mvc.Controller      Function Index()           ' Add action logic here           Throw New NotImplementedException()      End Function      Function Details(ByVal Id As Integer)           Return View("Details")      End Function End Class