// GET: Decision/Create
        public ActionResult Create()
        {
            var employees = employee.GetEmployeeSelectListItems().Select(x => new {
                Id   = x.Id,
                Name = x.LastName + " - " + x.FirstName
            }).ToList();

            ViewBag.Employees = new SelectList(employees, "Id", "Name");

            var decisiontypes = _decisiontypeService.GetDecisionTypes();

            ViewBag.DecisionTypes = new SelectList(decisiontypes, "Id", "Name");

            return(View());
        }
        // GET: DecisionType
        public ActionResult Index()
        {
            var list = service.GetDecisionTypes();

            return(View(list));
        }