public bool TryGet(int id, out Slech slech) { return sleches.TryGetValue(id, out slech); }
public bool Update(Slech slech) { bool update = sleches.ContainsKey(slech.Id); sleches[slech.Id] = slech; return update; }
public Slech Add(Slech slech) { slech.Id = nextID++; sleches[slech.Id] = slech; return slech; }