getAll() public méthode

public getAll ( ) : IList
Résultat IList
        public ActionResult index()
        {
            PhaseRepository phase_rep = new PhaseRepository();

            ViewData["all_phases"] = phase_rep.getAll();
            return View();
        }