exercism/csharp/grade-school/GradeSchool.cs

20 lines
494 B
C#
Raw Normal View History

2018-03-02 22:27:55 +00:00
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<string> Roster()
{
throw new NotImplementedException("You need to implement this function.");
}
public IEnumerable<string> Grade(int grade)
{
throw new NotImplementedException("You need to implement this function.");
}
}