-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVehicle.cs
97 lines (86 loc) · 2.35 KB
/
Vehicle.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
#region Copyright Syncfusion Inc. 2001-2019.
// Copyright Syncfusion Inc. 2001-2019. All rights reserved.
// Use of this code is subject to the terms of our license.
// A copy of the current license can be obtained at any time by e-mailing
// licensing@syncfusion.com. Any infringement will be prosecuted under
// applicable laws.
#endregion
using System.Collections.Generic;
using System.ComponentModel;
using System.Xml.Serialization;
namespace ImportNestedCollection
{
#region Import Classes
[XmlRootAttribute("BrandObjects")]
public class BrandObjects
{
[XmlElement("BrandObject")]
public BrandObject[] BrandObject { get; set; }
}
public class BrandObject
{
public string BrandName { get; set; }
public string VehicleType { get; set; }
public string ModelName { get; set; }
}
//Parent Class
public class Brand
{
private string m_brandName;
[DisplayNameAttribute("Brand")]
public string BrandName
{
get { return m_brandName; }
set { m_brandName = value; }
}
//Vehicle Type Collection
private IList<VehicleType> m_vehicleTypes;
public IList<VehicleType> VehicleTypes
{
get { return m_vehicleTypes; }
set { m_vehicleTypes = value; }
}
public Brand(string brandName)
{
m_brandName = brandName;
}
}
//Child Class
public class VehicleType
{
private string m_vehicleName;
[DisplayNameAttribute("Vehicle Type")]
public string VehicleName
{
get { return m_vehicleName; }
set { m_vehicleName = value; }
}
//Models collection
private IList<Model> m_models;
public IList<Model> Models
{
get { return m_models; }
set { m_models = value; }
}
public VehicleType(string vehicle)
{
m_vehicleName = vehicle;
}
}
//Sub-child Class
public class Model
{
private string m_modelName;
[DisplayNameAttribute("Model")]
public string ModelName
{
get { return m_modelName; }
set { m_modelName = value; }
}
public Model(string name)
{
m_modelName = name;
}
}
#endregion
}