示例#1
0
文件: Model.cs 项目: carlcnx/EnClass
        /// <exception cref="ArgumentNullException">
        /// <paramref name="first"/> or <paramref name="second"/> is null.
        /// </exception>
        public DependencyRelationship AddDependency(TypeBase first, TypeBase second)
        {
            DependencyRelationship dependency = new DependencyRelationship(first, second);

            AddDependency(dependency);
            return(dependency);
        }
示例#2
0
        public DependencyRelationship Clone(TypeBase first, TypeBase second)
        {
            DependencyRelationship dependency = new DependencyRelationship(first, second);

            dependency.CopyFrom(this);
            return(dependency);
        }
示例#3
0
文件: Model.cs 项目: carlcnx/EnClass
 public bool InsertDependency(DependencyRelationship dependency)
 {
     if (dependency != null && !relationships.Contains(dependency) &&
         entities.Contains(dependency.First) && entities.Contains(dependency.Second))
     {
         AddDependency(dependency);
         return(true);
     }
     else
     {
         return(false);
     }
 }
示例#4
0
文件: Model.cs 项目: carlcnx/EnClass
 protected virtual void AddDependency(DependencyRelationship dependency)
 {
     AddRelationship(dependency);
 }