public ActionResult <IEnumerable <Flower> > GetFlowersByBouquetId(int id)
 {
     try
     {
         return(Ok(_repo.GetFlowersByBouquetId(id)));
     }
     catch (Exception e)
     {
         return(BadRequest(e));
     }
 }