示例#1
0
 public Address()
 {
     Index    = new Index();
     Town     = new Town();
     Street   = new Street();
     Building = new Building();
     FlatPart = new FlatPart();
 }
示例#2
0
        public AddressModel()
        {
            Index    = new Index();
            Town     = new Town();
            Street   = new Street();
            Building = new Building();
            FlatPart = new FlatPart();

            Indexes   = new List <Index>();
            Towns     = new List <Town>();
            Streets   = new List <Street>();
            Buildings = new List <Building>();
            FlatParts = new List <FlatPart>();
        }