namespace Schultz
{
    // TODO: Add XML comments for sandcastle support.
    public class Matthew
    {
        public string Message
        {
            get
            {
                return "Hi, I'm Matthew Schultz, a web developer from Phoenix. I do custom web design and web development, for reasonable prices. Feel free to contact me!";
            }
        }
        public string Occupation
        {
            get
            {
                return "Software Developer";
            }
        }
        public string[] Companies
        {
            get
            {
                return new string[]{ "sStitch", "Abstract Approach Digital Solutions" };
            }
        }
        public object Location
        {
            get
            {
                return new
                {
                    City = "Phoenix",
                    State = "Arizona",
                    CountryCode = "US"
                };
            }
        }
        public object EmailAddress
        {
            return new
            {
                localPart = "abstractapproach",
                domain = "gmail.com"
            };
        }
        public object PhoneNumber
        {
            return new
            {
                countryCode = 1,
                areaCode = 602,
                number = 6356064
            };
        }
        public object PurposeInLife
        {
            get
            {
                throw new System.InvalidOperationException("Error - Purpose in life remains undefined");
            }
        }
    }
}