public HndzProject(String name, String description, Person owner, Person designer, Person consultant, Person contractor, HndzCity location, HndzLengthUnitSystem units, ICollection <HndzBuilding> buildings, HndzWCS globalCoordinateSystem, HndzSite site) : base(name, description) { Owner = owner; Designer = designer; Consultant = consultant; Contractor = contractor; Location = location; Buildings = buildings; GlobalCoordinateSystem = globalCoordinateSystem; Site = site; if (Owner == null) //temp to avoid Ifc Error { Owner = new Person(); } }
public HndzProject(Person owner, Person designer, Person consultant, Person contractor, HndzCity location, /*HndzLengthUnitSystem units,*/ ICollection <HndzBuilding> buildings, HndzWCS globalCoordinateSystem, HndzSite site, LengthUnit lengthUnit, AreaUnit areaUnit, TemperatureUnit temperatureUnit, MassUnit massUnit, ForceUnit forceUnit) : base(HndzResources.DefaultName, HndzResources.DefaultDescription) { Owner = owner; Designer = designer; Consultant = consultant; Contractor = contractor; Location = location; //Units = units; Buildings = buildings; GlobalCoordinateSystem = globalCoordinateSystem; Site = site; LengthUnit = lengthUnit; AreaUnit = areaUnit; TemperatureUnit = temperatureUnit; MassUnit = massUnit; ForceUnit = forceUnit; }
public HndzProject(ICollection <HndzBuilding> buildings, HndzSite site) : this(HndzResources.DefaultName, HndzResources.DefaultDescription, default(Person), default(Person), default(Person), default(Person), null, HndzLengthUnitSystem.mm, buildings, HndzWCS.WGS_1984, site) { }