/// <summary>
 /// Merge two cadastral areas
 /// </summary>
 /// <param name="c"></param>
 public void Merge(CadastralArea c)
 {
     c.PropertyLists.PreOrder((propertyList) =>
     {
         propertyList.ID = this.PropertyLists.Last().ID + 1;
         this.AddPropertyList(propertyList, true);
     });
 }
Exemple #2
0
 public CadastralAreaByID(CadastralArea c)
 {
     this.CadastralArea = c;
 }
 public PropertyList(int ID, CadastralArea c) : this(ID) => this.CadastralArea = c;
 public CadastralAreaByName(CadastralArea c)
 {
     this.CadastralArea = c;
 }