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