Sha256: c35896ca67e02faabc3fea693ed20a4f09c2a4dbf8cc291f2d287b1f23d4e062
Contents?: true
Size: 535 Bytes
Versions: 11
Compression:
Stored size: 535 Bytes
Contents
class Students_list_interface def get_student_by_id(id) raise NotImplementedError end def get_k_n_student_short_list(k, n, filter = nil, data_list = nil) raise NotImplementedError end def add_student(student) raise NotImplementedError end def replace_student(id, new_student) raise NotImplementedError end def delete_student(id) raise NotImplementedError end def get_student_short_count(filter = nil) raise NotImplementedError end end
Version data entries
11 entries across 11 versions & 1 rubygems