Ejemplo n.º 1
0
        public DataSet GetAllInvoice()
        {
            DAL_SendingInvoice dataLayerPS;

            dataLayerPS = new DAL_SendingInvoice();
            return(dataLayerPS.GetAllInvoice());
        }
Ejemplo n.º 2
0
        private void BindPaymentStatusList()
        {
            DAL_SendingInvoice obj = new DAL_SendingInvoice();
            DataSet            ds;

            ds = obj.GetAllInvoice();
            gvInvoice.DataSource = ds;
            gvInvoice.DataBind();
        }