Beispiel #1
0
        public int ws_insertPassport(wsPassportExtended p, int ID, out string OpStatus)
        {
            try
            {
                int code = 0;
                DeviceDataManager DDM = new DeviceDataManager();
                code = DDM.insertPassport(p, ID);
                if (code == 0)
                {
                    OpStatus = Resources.Messages.m_OpStatusDone;
                }
                else
                {
                    OpStatus  = Resources.Messages.m_OpStatusFail;
                    OpStatus += code;
                }

                //---- Создать оповещение через сервер оповещений--------------------------------------
                string s = "Добавлен новый паспорт в базу устройств \n";
                s += "Наименование: " + p.DevDescrRU + "\n";
                s += "инв.№ = " + p.DevInvNo + "\n";
                s += "№ паспорта = " + p.DevPassportNo + "\n";

                NotifyServerClient.unClientClass notifyClient = new NotifyServerClient.unClientClass();
                notifyClient.sendNotify(s);
                //--------------------------------------------------------------------------------------

                return(1);
            }
            catch (Exception err)
            {
                OpStatus  = Resources.Messages.m_OpStatusFail;
                OpStatus += err.Message.ToString();
                return(0);
            }
        }
Beispiel #2
0
        public int ws_insertPassport(wsPassportExtended p, int ID, out string OpStatus)
        {
            try
            {
                int code = 0;
                DeviceDataManager DDM = new DeviceDataManager();
                code = DDM.insertPassport(p,ID);
                if (code == 0)
                {
                    OpStatus = Resources.Messages.m_OpStatusDone;
                }
                else
                {
                    OpStatus = Resources.Messages.m_OpStatusFail;
                    OpStatus += code;
                }

                //---- Создать оповещение через сервер оповещений--------------------------------------
                string s = "Добавлен новый паспорт в базу устройств \n";
                s += "Наименование: " + p.DevDescrRU + "\n";
                s += "инв.№ = " + p.DevInvNo + "\n";
                s += "№ паспорта = " + p.DevPassportNo + "\n";

                NotifyServerClient.unClientClass notifyClient = new NotifyServerClient.unClientClass();
                notifyClient.sendNotify(s);
                //--------------------------------------------------------------------------------------

                return 1;
            }
            catch (Exception err)
            {
                OpStatus = Resources.Messages.m_OpStatusFail;
                OpStatus += err.Message.ToString();
                return 0;
            }
        }