Hi
I have below class
public string CallTime
{
public String QStateCode { get; set; }
public int CallID {get;set}
}
I get QStateCode as from service call. The value is for e.g is "072 - San Francisco"
I need QStateCode = "072" to be displayed to the UI. So I need send it to UI. How do I achieve this.
Thanks
Adib