// GET: Agent
        public ActionResult Index()
        {
            var agents = _repository.All();

            return(View(agents));
        }