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