public void ModRow(DecyzjeAdministracyjne modDecyzje) { using (Context c = new Context()) { c.DecyzjeAdministracyjne.Update(modDecyzje); c.SaveChanges(); } }
public void AddRow(DecyzjeAdministracyjne newDecyzje) { using (Context c = new Context()) { c.DecyzjeAdministracyjne.Add(newDecyzje); c.SaveChanges(); } list.Add(newDecyzje); }