public void UpdateFlower(BlomsterSort flower) { for (int i = 0; i < blomster.Count; i++) { if (blomster[i].Name == flower.Name) { blomster[i] = flower; } } }
public void DeleteFlower(BlomsterSort flower) { blomster.Remove(flower); }
public void AddFlower(BlomsterSort flower) { blomster.Add(flower); }
public void UpdateFlowerInformation(string name, string picturepath, int produktionstid, int halveringstid, int størrelse) { BlomsterSort b1 = new BlomsterSort(name, picturepath, produktionstid, halveringstid, størrelse); repo.UpdateFlower(b1); }