private void setLog(int modifyID)
        {
            Business.Common.CommonBusiness commonBSN = new Business.Common.CommonBusiness();

            string userId; //کاربری که لاگین کرده
            //eventType//کد کاری که انجام شده.
            int appId;     //کد قسمتی از برنامه که الان توش هستیم. یعنی کارگزینی  -  13

            appId = Convert.ToInt32(Session[sessionNames.appID_StudentOstad]);

            commonBSN.InsertIntoStudentLog(ViewState[hrID].ToString(), DateTime.Now.ToString("HH:mm"), 13, 50, Session[sessionNames.userID_StudentOstad].ToString(), modifyID);
        }
        private void setLog(int modifyId, int eventID, string description)
        {
            Business.Common.UniversityBusiness UB = new Business.Common.UniversityBusiness();
            string userId;                       //کاربری که لاگین کرده
            //eventType//کد کاری که انجام شده.
            int appId;                           //کد قسمتی از برنامه که الان توش هستیم. یعنی کارگزینی  -  13

            userId = ViewState[hrID].ToString(); // Session[sessionNames.userID_StudentOstad].ToString();
            appId  = Convert.ToInt32(Session[sessionNames.appID_StudentOstad]);


            commonBSN.InsertIntoStudentLog(userId, DateTime.Now.ToString("HH:mm"), 13, eventID, description, modifyId);
        }