Beispiel #1
0
 //Metodo Insert
 public async Task InsertAsync(Tipo tipo)
 {
     _context.Add(tipo);
     await _context.SaveChangesAsync();
 }
Beispiel #2
0
 //Metodo Insert
 public async Task InsertAsync(Fechamento fechamento)
 {
     _context.Add(fechamento);
     await _context.SaveChangesAsync();
 }
Beispiel #3
0
 //Metodo Insert
 public async Task InsertAsync(Operador operador)
 {
     _context.Add(operador);
     await _context.SaveChangesAsync();
 }