//
        // GET: /Competence/

        public ActionResult Index()
        {
            var fake = FakeProfileSimulator.GetAFakeProfile();

            return(View("Index", fake.Competences));
        }
        public ActionResult Detail(int id)
        {
            var fake = FakeProfileSimulator.GetAFakeProfile();

            return(View("Detail", fake.GetACompetence(id)));
        }
示例#3
0
        //
        // GET: /Realisation/

        public ActionResult Index()
        {
            var fake = FakeProfileSimulator.GetAFakeProfile();

            return(View("Index", fake.Realisations));
        }