Beispiel #1
0
        private void addFirstDownloadLog(User user, int topicId)
        {
            AttachmentDownload x = new AttachmentDownload();

            x.UserId  = user.Id;
            x.TopicId = topicId;
            x.insert();
        }
Beispiel #2
0
 private void addFirstDownloadLog( User user, int topicId )
 {
     AttachmentDownload x = new AttachmentDownload();
     x.UserId = user.Id;
     x.TopicId = topicId;
     x.insert();
 }