Exemplo n.º 1
0
 /// <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);
     });
 }
Exemplo n.º 2
0
 public CadastralAreaByID(CadastralArea c)
 {
     this.CadastralArea = c;
 }
Exemplo n.º 3
0
 public PropertyList(int ID, CadastralArea c) : this(ID) => this.CadastralArea = c;
 public CadastralAreaByName(CadastralArea c)
 {
     this.CadastralArea = c;
 }