using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
namespace AspMvcIntroduction.Controllers
{
public class IntroController : Controller
{
//
// GET: /Intro/
public string Greet()
{
return "Merhaba";
}
public string Index()
{
return "Gösterge";
}
}
}
Dosyayı İndir