Beispiel #1
0
        public string CustomerShippingAddress(int CustomerId)
        {
            List <CustomerShippingAddress_Result> obj = new List <CustomerShippingAddress_Result>();


            using (var entities = new SedapExpressEntities())
            {
                obj = entities.CustomerShippingAddress(Convert.ToInt32(CustomerId)).ToList <CustomerShippingAddress_Result>();
            }

            return(JsonConvert.SerializeObject(obj));
        }