This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Site Type | |
public virtual SiteType _siteType { get; set; } | |
public virtual string _siteTypeName { get; set; } | |
[DataMember(Name = "stn")] | |
public virtual string SiteTypeName { | |
//set the person name | |
set { this._siteTypeName = value; this._siteType = EnumUtility.GetEnumValueFromDescription<SiteType>(value); } | |
//get the person name |