Exemplo n.º 1
0
        //
        // GET: /Competence/

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

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

            return(View("Detail", fake.GetACompetence(id)));
        }
Exemplo n.º 3
0
        //
        // GET: /Realisation/

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

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