5.1.1 Use Automatic Properties
parent
ddbaeaa84f
commit
d848d67310
|
@ -22,10 +22,15 @@ namespace automatically_implemented_properties
|
|||
{
|
||||
private string name;
|
||||
|
||||
public int ProductID { get; set; }
|
||||
|
||||
public string Name
|
||||
{
|
||||
get { return name; }
|
||||
get { return ProductID + name; }
|
||||
set { name = value; }
|
||||
}
|
||||
public string Description { get; set; }
|
||||
public decimal Price { get; set; }
|
||||
public string Category { set; get; }
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue