public void BindServiceHistory(int serviceId)
        {
            // load hosting addon svc
            HostingAddonSvc addonSvc = StorehouseHelper.GetHostingAddonService(serviceId);

            //
            ecUtils.ToggleControls(addonSvc.Recurring, pnlAddonSvcHistory);
            //
            if (addonSvc.Recurring)
            {
                gvServiceHistory.DataSource = StorehouseHelper.GetServiceHistory(serviceId);
                gvServiceHistory.DataBind();
            }
        }
 public void BindServiceHistory(int serviceId)
 {
     gvServiceHistory.DataSource = StorehouseHelper.GetServiceHistory(serviceId);
     gvServiceHistory.DataBind();
 }