public async Task CreateDiscipline(DisciplineStage disciplineStage)
        {
            await _context.AddAsync(disciplineStage);

            await _context.SaveChangesAsync();
        }
Exemplo n.º 2
0
        public async Task CreateComment(Comment comment)
        {
            await _context.AddAsync(comment);

            await _context.SaveChangesAsync();
        }