Exemplo n.º 1
0
 public bool Delete(CarBrand elem)
 {
     // Confirmar se a chave de Brand é title
     return data.ContainsValue(elem) && data.Remove(elem.title);
 }
Exemplo n.º 2
0
 public bool Update(CarBrand newElem)
 {
     throw new NotImplementedException();
 }
Exemplo n.º 3
0
 public bool Add(CarBrand elem)
 {
     throw new NotImplementedException();
 }