public void updateLocalIged(LocalIged localIged) { using (var _context = new rendugelDBContext()) { _context.LocalIged.Update(localIged); _context.SaveChanges(); } }
public int saveLocalIged(LocalIged localIged) { using (var _context = new rendugelDBContext()) { _context.LocalIged.Add(localIged); _context.SaveChanges(); return(localIged.IdLocalIged); } }