public IEnumerable<StudentTag> GetTags() { StudentTag[] tags = new StudentTag[] { new StudentTag{Id=1, Name="好动"}, new StudentTag{Id=1, Name="善良"} }; return tags; }
public StudentTag Post(StudentTag value) { repository.Add(value); return value; }
StudentTag IStudentTagRepository.Add(StudentTag tag) { DataGateway<DataContext>.Instance.Add(tag); DataGateway<DataContext>.Instance.Save(); return tag; }