public DataSet getAllInvoice()
        {
            BllFreshFlowers bizLayerInvoice = new BllFreshFlowers();

            return(bizLayerInvoice.GetAllInvoice());
        }
        public DataSet GetAllDelivery()
        {
            BllFreshFlowers bizLayerOrder = new BllFreshFlowers();

            return(bizLayerOrder.GetAllDelivery());
        }
        public DataSet getALLPayment()
        {
            BllFreshFlowers bizLayerPayment = new BllFreshFlowers();

            return(bizLayerPayment.GetAllPayment());
        }
        public DataSet ViewPayment(int paymentID)
        {
            BllFreshFlowers bizLayerPayment = new BllFreshFlowers();

            return(bizLayerPayment.ViewPayment(paymentID));
        }
        public DataSet GetAllAccount()
        {
            BllFreshFlowers bizLayerAccount = new BllFreshFlowers();

            return(bizLayerAccount.GetAllAccount());
        }