using System.Collections.Generic;
namespace HelloWorldMvcApp
public class HomeController : Controller
public ActionResult Index()
ResultViewModel model = null;
public ActionResult Index(int customerReferenceNumber, string customerName, string mobileNumber)
var model = new ResultViewModel();
model.CustomerName = customerName;
model.CustomerReferenceNumber = customerReferenceNumber;
model.MobileNumber = mobileNumber;