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