public ActionResult Create()
 {
     ViewBag.Groups = _attendanceFactory.GetEmployeeGroup().GetAll();
     return(View());
 }
        public ActionResult Index()
        {
            IList <EmployeeGroup> d = _attendanceFactory.GetEmployeeGroup().GetAll();

            return(View(d));
        }