public decimal GetTotal()
 {
     return(Fruits.Sum(f => f.Price) + Shots.Sum(s => s.Price));
 }