Esempio n. 1
0
        public JsonResult GetCustomerListBySalesPersonID(int salesPersonID)
        {
            var List = BL_Customer.GetCustomerListBySalesPersonID(salesPersonID);

            return(Json(List, JsonRequestBehavior.AllowGet));
        }