24 dezembro, 2008

Teste de formatação de código

namespace ABCMVC2008.Model

{


    class Customer


    {


        private int _CustomerId;


        public int CustomerId { get { return _CustomerId; } set { _CustomerId = value; } }


        public string FirstName { get; set; }


        public string LastName { get; set; }


        public string CompanyName { get; set; }


        public string eMailAddress { get; set; }


        public string PhoneNumber { get; set; }


        public string ModifiedDate { get; set; }


    }


}