Files
BeWoPlaner/Shared/DataContracts/ClientPartials/FLSAnalysisRootDC.cs
2016-06-27 01:45:38 +02:00

22 lines
521 B
C#

namespace BS.Shared.DataContracts
{
public partial class FLSAnalysisRootDC
{
public string DisplayName
{
get
{
if (this.Customer != null)
{
return this.Customer.ToString();
}
else if (this.Employee != null)
{
return this.Employee.ToString();
}
return string.Empty;
}
}
}
}