Exemple #1
0
        protected void bind()
        {
            string             DO_ID = Request.QueryString["DO_ID"];
            BLL_SupplierNelson obj   = new BLL_SupplierNelson();

            DAL_DeliveryOrder[] ds;
            ds = obj.getDeliveryOrder(DO_ID);
            gvDeliveryOrderItems.DataSource = ds;
            gvDeliveryOrderItems.DataBind();
        }
        public DataSet getAllDeliveryOrders()
        {
            BLL_SupplierNelson bizLayergetDO = new BLL_SupplierNelson();

            return(bizLayergetDO.getAllDeliveryOrders());
        }
        //Nelson
        public List <DAL_DeliveryOrder> getDeliveryOrder(string DO_ID)
        {
            BLL_SupplierNelson bizLayergetDO = new BLL_SupplierNelson();

            return(bizLayergetDO.getDeliveryOrder(DO_ID));
        }