Exemplo n.º 1
0
 public async Task <bool> Put(Student student)
 {
     return(await _store.UpdateStudent(student));
 }
Exemplo n.º 2
0
 public async Task <bool> Post(Student student)
 {
     return(await _store.AddStudent(student));
 }