BeforeAutomapper.Controllers.CustomerController.Show C# (CSharp) Method

Show() public method

public Show ( int id ) : System.Web.Mvc.ViewResult
id int
return System.Web.Mvc.ViewResult
        public ViewResult Show(int id)
        {
            Customer customer = _repository.GetById(id);
            return View(customer);
        }