public HomeController(IBouquetManager bouquetManager)
 {
     this.bouquetManager = bouquetManager;
 }
 public CartController(IBouquetManager bouquetManager,
                       SessionCartService sessionCartService)
 {
     this.bouquetManager     = bouquetManager;
     this.sessionCartService = sessionCartService;
 }