-1
public string Type
{
get
{
a =>
{
if (a == "CAR_DEPOSIT")
{
b = "Cash deposit";
}
return b;
}
}; set;
}
public string Type
{
get
{
a =>
{
if (a == "CAR_DEPOSIT")
{
b = "Cash deposit";
}
return b;
}
}; set;
}
private string type;
public string Type
{
get
{
return type;
}
set
{
if (value== "CAR_DEPOSIT")
{
type = "Car deposit";
}
else if(value== "CAR_WITHDRAWAL")
{
type = "Car withdrawal";
}
else
{
type = value;
}
}
}