| 12345678910111213141516171819202122 |
- using CD67.FicheCollege.Entity;
- using CD67.FicheCollege.Factory;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- using System.Web.Mvc;
- namespace CD67.FicheCollege.MVC.Controllers
- {
- public class GestionActionsController : Controller
- {
- private Entities db = new Entities();
- // GET: GestionActions
- public ActionResult Index()
- {
- CollegeFactory collegeFactory = new CollegeFactory(db);
- return View(collegeFactory.getAll());
- }
- }
- }
|