| 123456789101112131415161718192021 |
- using CD67.FicheCollege.Entity;
- using CD67.FicheCollege.Factory;
- using System;
- using System.Linq;
- using System.Net;
- using System.Web.Mvc;
- namespace CD67.FicheCollege.MVC.Controllers
- {
- public class HomeController : Controller
- {
- private Entities db = new Entities();
- // GET: Home
- public ActionResult Index()
- {
- AnneeFactory fact = new AnneeFactory(db);
- return RedirectToAction("Details", "Annees", new { id = fact.get_current_year_id() });
- }
- }
- }
|