Beispiel #1
0
        protected void loadData()
        {
            int clientID   = SessionHelper.getClientId();
            int openCount  = 0;
            int closeCount = 0;

            if (clientID > 0)
            {
                openCount = LeadsManager.GetOpenLeadCount(clientID);

                closeCount = LeadsManager.GetCloseLeadCount(clientID);

                lblOpenLeadCount.Text = string.Format("{0:n0}", openCount);

                lblCloseLeadCount.Text = string.Format("{0:n0}", closeCount);
            }
        }