00001 using System; 00002 using System.Collections.Generic; 00003 using System.Text; 00004 using HouseOver.THARM.Attributes; 00005 00006 namespace HouseOver.THARM.Buildings 00007 { 00011 [SearchItems] 00012 [Serializable] 00013 public class House : Domicile 00014 { 00016 private int groundArea; 00017 00021 public House() : base(UniquelyIdentifiable.NextID) { } 00022 00027 public House(int id) : base(id) { } 00028 00038 public House(int id, int postalCode, int area, int buildingYear, int levels, int groundArea) : base 00039 (id, postalCode, area, buildingYear, levels) 00040 { 00041 this.groundArea = groundArea; 00042 } 00043 00047 [SaleCriteria("Surrounding Lot Area")] 00048 public int GroundArea { get { return groundArea; } set { groundArea = value; } } 00049 00050 } 00051 }