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