public virtual ProjectUserTable copyWithProject()
        {
            ProjectUserTable userTable = (ProjectUserTable)clone();

            if (ProjectInfoTable != null)
            {
                userTable.ProjectInfoTable = (ProjectInfoTable)ProjectInfoTable.Clone();
            }

            return(userTable);
        }
示例#2
0
        public virtual ProjectUrlTable copyWithProject()
        {
            ProjectUrlTable urlTable = (ProjectUrlTable)copy();

            if (ProjectInfoTable != null)
            {
                urlTable.ProjectInfoTable = (ProjectInfoTable)ProjectInfoTable.Clone();
            }

            return(urlTable);
        }