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