public async Task Delete(int id)
 {
     await _studentsService.DeleteStudentById(id);
 }
Exemplo n.º 2
0
 public bool DeleteStudentById(int id)
 {
     return(studentsService.DeleteStudentById(id));
 }