public ActionResult <IEnumerable <Bouquet> > Get()
 {
     try
     {
         return(Ok(_repo.GetALL()));
     }
     catch (Exception e)
     {
         return(BadRequest(e));
     }
 }