Exemplo n.º 1
0
        protected void bindSUpplierMarketsGrid()
        {
            Guid mySupplier_Id = Guid.Parse(Request.QueryString["Supplier_Id"]);
            var  result        = _objMaster.GetSupplierMarket(new MDMSVC.DC_SupplierMarket()
            {
                Supplier_Id = mySupplier_Id, PageSize = intPageSize, PageNo = intPageNo
            });

            grdSupplierMarkets.DataSource = result;
            grdSupplierMarkets.DataBind();
        }