public IEnumerable <Student> Get()
        {
            CassandraRepoPatterns repo = new CassandraRepoPatterns(config);
            var students = repo.GetStudents();

            return(students);
        }
        public ActionResult <Student> Get(int id)
        {
            CassandraRepoPatterns repo = new CassandraRepoPatterns(config);
            var student = repo.GetStudentById(id);

            return(student);
            //return "value";
        }
        public void Delete(int id)
        {
            CassandraRepoPatterns repo = new CassandraRepoPatterns(config);

            repo.RemoveStudent(id);
        }
        public void Put(Student student)
        {
            CassandraRepoPatterns repo = new CassandraRepoPatterns(config);

            repo.ChangeDetails(student);
        }
        public void Post(Student student)
        {
            CassandraRepoPatterns repo = new CassandraRepoPatterns(config);

            repo.NewStudent(student);
        }