public double OfferPrice(CD Cd) { var existsInTop = chartsService.Top100.FirstOrDefault(p => p.Title == Cd.Title); return(existsInTop != null ? existsInTop.Price - 1 : Cd.Price); }
public void Notify(CD cd) { }