Files
BeWoPlaner/Shared/DataContracts/ClientPartials/FLSAnalysisRootDC.cs

22 lines
521 B
C#
Raw Normal View History

2016-06-27 01:45:38 +02:00
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;
}
}
}
}