✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Cum se va numi view-ul care va fi returnat la apelarea metodei Index() a controllerului Customer?
using System.Web.Mvc;
namespace MvcApplication1.Controllers
{
public class CustomerController : Controller
{
public ActionResult Index()
{
return View();
}
}
}