protected void Page_Load(object sender, EventArgs e)
        {
            Account LoginUser = Session[SessionKeys.LOGININFO] as Account;
            OtherStatisticsDataIndexPresenter otherStatisticsDataIndexPresenter =
                new OtherStatisticsDataIndexPresenter(this, LoginUser);

            otherStatisticsDataIndexPresenter.InitPresent(IsPostBack);
            otherStatisticsDataIndexPresenter.StatisticsEmployee(null, null);
        }
        override protected void OnInit(EventArgs e)
        {
            base.OnInit(e);
            Account LoginUser = Session[SessionKeys.LOGININFO] as Account;
            OtherStatisticsDataIndexPresenter otherStatisticsDataIndexPresenter =
                new OtherStatisticsDataIndexPresenter(this, LoginUser);

            otherStatisticsDataIndexPresenter.InitPresent(false);
        }