getAll() public method

public getAll ( ) : IList
return IList
Example #1
0
        public ActionResult index()
        {
            PhaseRepository phase_rep = new PhaseRepository();

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