Esempio n. 1
0
        public void Delete(int Id)
        {
            var aluno = this.Get(Id);

            _context.Remove(aluno);
        }
Esempio n. 2
0
        public void Delete(int Id)
        {
            var escola = this.Get(Id);

            _context.Remove(escola);
        }
Esempio n. 3
0
        public void Delete(int Id)
        {
            var turma = this.Get(Id);

            _context.Remove(turma);
        }