Esempio n. 1
0
        /// <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);
        }
Esempio n. 2
0
        public DependencyRelationship Clone(TypeBase first, TypeBase second)
        {
            DependencyRelationship dependency = new DependencyRelationship(first, second);

            dependency.CopyFrom(this);
            return(dependency);
        }
Esempio n. 3
0
 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);
     }
 }
Esempio n. 4
0
 protected virtual void AddDependency(DependencyRelationship dependency)
 {
     AddRelationship(dependency);
 }