Example #1
0
 public void Remove(Domain.Models.Agendamento agendamento)
 {
     _context.Agendamentos.Remove(agendamento);
 }
Example #2
0
 public void Update(Domain.Models.Agendamento agendamento)
 {
     _context.Agendamentos.Update(agendamento);
 }
Example #3
0
 public async Task AddAsync(Domain.Models.Agendamento agendamento)
 {
     await _context.Agendamentos.AddAsync(agendamento);
 }