using System;

using System.Collections.Generic;

using System.Linq;

using System.Web;

 

namespace Services

{

    public class Customer

    {

        // Auto-implemented properties

        public String Name { get; set; }

        public String Address { get; set; }

        public String City { get; set; }

        public String State { get; set; }

        public int Zip { get; set; }

        public String Email { get; set; }

 

 

    }

}