コード例 #1
0
    /// <summary>
    ///  To bind Vendor of 'Active' and 'InActive' Status
    /// </summary>
    /// <returns></returns>
    protected DataTable VenDetails()
    {
        VendorBAL VendorBAL = new VendorBAL();
        DataTable DtVenDet  = new DataTable();

        try
        {
            DtVenDet = VendorBAL.LoadAllVendor(LoginUser, Ret);
        }
        catch
        {
            throw;
        }
        finally
        {
            VendorBAL = null;
        }
        return(DtVenDet);
    }
コード例 #2
0
 /// <summary>
 ///  To bind Vendor of 'Active' and 'InActive' Status
 /// </summary>
 /// <returns></returns>
 protected DataTable VenDetails()
 {
     VendorBAL VendorBAL = new VendorBAL();
     DataTable DtVenDet = new DataTable();
     try
     {
         DtVenDet = VendorBAL.LoadAllVendor(LoginUser, Ret);
     }
     catch
     {
         throw;
     }
     finally
     {
         VendorBAL = null;
     }
     return DtVenDet;
 }