// GET: Attachments
        public ActionResult Index(int employeeId)
        {
            var attachmentDtos = _repository.GetAllByEmployeeId(employeeId);

            return(View(attachmentDtos));
        }