Example #1
0
        /*__________________________________________________________________________________________*/

        public void addSupportComment(SupportCommentsVO vo)
        {
            if (this.SupportComments.Contains(vo))
            {
                return;
            }
            this.SupportComments.Add(vo);
        }
Example #2
0
 public void insertSupportComment(SupportCommentsVO vo, int index)
 {
     if (this.SupportComments.Contains(vo))
     {
         return;
     }
     this.SupportComments.Insert(index, vo);
 }
Example #3
0
 /*__________________________________________________________________________________________*/
 public SupportCommentsVO(SupportCommentsVO record)
 {
     if (record != null)
     {
         this.CommentNote    = record.CommentNote;
         this.EmployeeNumber = record.EmployeeNumber;
         this.CustomerNumber = record.CustomerNumber;
         this.LastUpDateDATE = record.LastUpDateDATE;
         this.UpDatedBy      = record.UpDatedBy;
         this.Category       = record.Category;
     }
 }