I have a business object ,
public
class
Person
{
public
string
Name {
get
;
set
;}
public
bool
Show {
get
;
set
;}
public
class
Company {
get
;
set
;}
}
public
class
Company
{
public
string
Name {
get
;
set
;}
public
string
Address {
get
;
set
;}
}
I expect that Company will hide when the Show is false, and vise versa.