//   M e t h o d s

        public IActionResult Index()
        {
            IQueryable <Set> allSets = _repository.GetAllSets();

            return(View(allSets));
        }