private void AddComments(int workId, string comment)
        {
            int companyId = Convert.ToInt32(Session["companyID"]);
            int loginId = Convert.ToInt32(Session["loginID"]);
            DateTime dateTime_ = DateTime.Now;
            bool inDatabase = false;
            bool deleted = false;

            string newSubject = "Bulk Field Update Comments";
            string newType = "Junction Lining Lateral";
            int? libraryFilesId = null;
            bool toHistory = false;

            LoginGateway loginGateway = new LoginGateway();
            loginGateway.LoadByLoginId(loginId, companyId);
            string userFullName = loginGateway.GetLastName(loginId, companyId) + " " + loginGateway.GetFirstName(loginId, companyId);

            FlatSectionJlCommentDetails model = new FlatSectionJlCommentDetails(flatSectionJlTDS);
            model.InsertForBulkFieldUpdate(workId, newType, newSubject, loginId, dateTime_, comment, libraryFilesId, deleted, companyId, inDatabase, userFullName, toHistory);
        }