using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace EmployeeManagement { public partial class TelephoneNumber { public string FormattedPrefix { get { return "+" + Prefix; } } public string FormattedNumber { get { return string.Format("+{0} (0){1}", Prefix, NationalNumber.Substring(1)); } } } }