Exemple #1
0
        // GET: api/Customers/5
        public CustomerModel Get(int id)
        {
            CustomerModel UDV = null;

            if (id != 0)
            {
                CustomerModel cs = UM.GetCustomerProfile(id);
                UDV = cs;
            }
            return(UDV);
        }