protected void copyPropertiesFromLocated(TECLocated scope)
 {
     copyPropertiesFromScope(scope);
     if (scope.Location != null)
     {
         _location = scope.Location;
     }
 }
示例#2
0
 private void removeLocationFromScope(TECLocation location)
 {
     foreach (TECLocated located in this.GetAll <TECLocated>())
     {
         if (located.Location == location)
         {
             located.Location = null;
         }
     }
 }
 public TECLocation(TECLocation source) : base(source)
 {
     _name = source.Name;
 }