/// <summary> /// Constructor for building a new simple object with the POCO class /// </summary> public vGeospatialArea(vGeospatialArea vGeospatialArea) : this() { this.GeospatialAreaID = vGeospatialArea.GeospatialAreaID; this.PrimaryKey = vGeospatialArea.PrimaryKey; this.GeospatialAreaShortName = vGeospatialArea.GeospatialAreaShortName; this.TenantID = vGeospatialArea.TenantID; this.TenantName = vGeospatialArea.TenantName; this.GeospatialAreaTypeName = vGeospatialArea.GeospatialAreaTypeName; this.GeospatialAreaTypeID = vGeospatialArea.GeospatialAreaTypeID; CallAfterConstructor(vGeospatialArea); }
partial void CallAfterConstructor(vGeospatialArea vGeospatialArea);