public async Task Delete(int id)
 {
     await _studentsService.DeleteStudentById(id);
 }
Пример #2
0
 public bool DeleteStudentById(int id)
 {
     return(studentsService.DeleteStudentById(id));
 }