예제 #1
0
        public ForumThreadNodeInfo CreateForumThreadNode(string Text, DateTime Created, int CreatorId, int EMailMessageId, int nodeType)
        {
            int retVal = DBForum.CreateSimpleForumThreadNode(_ownerContainer.Key, Text, Created, CreatorId, null, null, EMailMessageId, nodeType);

            return(GetForumThreadNode(retVal));
        }
예제 #2
0
        public ForumThreadNodeInfo CreateForumThreadNode(string Text, DateTime Created, string CreatorName, string CreatorEmail, int nodeType)
        {
            int retVal = DBForum.CreateSimpleForumThreadNode(_ownerContainer.Key, Text, Created, null, CreatorName, CreatorEmail, null, nodeType);

            return(GetForumThreadNode(retVal));
        }