コード例 #1
0
 private void DetachTicketEventNotifications(TicketEventNotification entity)
 {
     entity.TicketComment = null;
 }
コード例 #2
0
 private bool FilterTicketEventNotifications(TicketEventNotification entity)
 {
     return ((entity.TicketId == this.TicketId) 
                 && (entity.CommentId == this.CommentId));
 }
コード例 #3
0
 private void AttachTicketEventNotifications(TicketEventNotification entity)
 {
     entity.TicketComment = this;
 }