using System; using System.Collections.Generic; public class School { public void Add(string student, int grade) { throw new NotImplementedException("You need to implement this function."); } public IEnumerable Roster() { throw new NotImplementedException("You need to implement this function."); } public IEnumerable Grade(int grade) { throw new NotImplementedException("You need to implement this function."); } }