Beispiel #1
0
        public string Data_Select_Invoice(string cxdata)
        {
            token = appClass.CRM_Gettoken();
            CRM_MSG_INVOICEParam model = Newtonsoft.Json.JsonConvert.DeserializeObject <CRM_MSG_INVOICEParam>(cxdata);

            CRM_MSG_INVOICEList[] data = crmModels.MSG_INVOICE.ReadByParam(model, token);
            return(Newtonsoft.Json.JsonConvert.SerializeObject(data));
        }
Beispiel #2
0
 public CRM_MSG_INVOICEList[] ReadByParam(CRM_MSG_INVOICEParam model, string ptoken)
 {
     return(client.ReadByParam(model, ptoken));
 }