protected void GetInterfaceList()
        {
            iPartRequestClient objService = new iPartRequestClient();


            CustomProfile profile = CustomProfile.GetProfile();

            GVInterface.DataSource = null;
            GVInterface.DataBind();

            DataSet dsInterface = new DataSet();

            dsInterface = objService.GetGetInterfaceDetails(profile.DBConnection._constr);

            GVInterface.DataSource = dsInterface;
            GVInterface.DataBind();
        }