Esempio n. 1
0
        // GET: EmployeePosition
        public ActionResult Index()
        {
            var personPositions = db.PersonPositions.Include(p => p.Position);
            var personList      = _personService.GetAll();
            var positionList    = _positionService.GetAll();

            return(View(_ppService.GetAll()));
        }