public void Delete(int Id) { var aluno = this.Get(Id); _context.Remove(aluno); }
public void Delete(int Id) { var escola = this.Get(Id); _context.Remove(escola); }
public void Delete(int Id) { var turma = this.Get(Id); _context.Remove(turma); }