public void DeleteTag(ResourceTag tag) { for (int i = 0; i < Tags.Count; i++) { if (tag.Id.Equals(Tags[i].Id)) { Tags.RemoveAt(i); SaveTags(); break; } } }
public void UpdateTag(string oldId, ResourceTag tag) { for (int i = 0; i < Tags.Count; i++) { if (oldId.Equals(Tags[i].Id)) { Console.WriteLine("Uslo u updatee"); Tags[i] = tag; SaveTags(); break; } } }
public void AddTag(ResourceTag tag) { tags.Add(tag); SaveTags(); }
public ResourceTag(ResourceTag resourceTag) { id = resourceTag.Id; color = resourceTag.Color; description = resourceTag.Description; }