Example #1
0
        // GET: AbsenceTypeController/Details/5
        public ActionResult Details(int id)
        {
            if (!_repo.IsExist(id))
            {
                return(NotFound());
            }
            var AbsenceType = _repo.GetById(id);
            var model       = _mapper.Map <DetailsAbsenceTypeViewModel>(AbsenceType);

            return(View(model));
        }