- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
public string OperatorName
{
get
{
if (m_operator == null)
{
try
{
int idUser = 1;
m_operator = (idUser > 0) ? "Василий" : string.Empty;
}
catch
{
m_operator = string.Empty;
}
}
return m_operator;
}
}