Example #1
0
        public double OfferPrice(CD Cd)
        {
            var existsInTop = chartsService.Top100.FirstOrDefault(p => p.Title == Cd.Title);

            return(existsInTop != null ? existsInTop.Price - 1 : Cd.Price);
        }
Example #2
0
 public void Notify(CD cd)
 {
 }