public int ws_checkPassportProducer(wsProducerType P, out int OpValue, out string OpStatus) { OpValue = 555; wsProducerType RP = new wsProducerType(); try { DeviceDataManager DDM = new DeviceDataManager(); DDM.checkPassport(P, out OpValue, out OpStatus); if (OpValue == 50018) { return(1); // Можно вставлять паспорт } else { return(0); } } catch (Exception err) { OpStatus = "Ошибка SQL: " + err.Message.ToString(); return(0); } }
public int ws_checkPassportProducer(wsProducerType P, out int OpValue, out string OpStatus) { OpValue = 555; wsProducerType RP = new wsProducerType(); try { DeviceDataManager DDM = new DeviceDataManager(); DDM.checkPassport(P, out OpValue, out OpStatus); if (OpValue == 50018) return 1; // Можно вставлять паспорт else return 0; } catch (Exception err) { OpStatus = "Ошибка SQL: " + err.Message.ToString(); return 0; } }