// DELETE: api/BookingFlower/5
 public void Delete(int id)
 {
     try
     {
         BookingFlowerDAL.Delete(id);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }