Esempio n. 1
0
        public ObjectSend(string action, string ticket_id, string state, string service_id, string platform, bool record_transaction, string reasonText)
        {
            this.action     = action;
            this.service_id = service_id;
            this.state      = state;
            this.ticket_id  = ticket_id;
            ExtraSend extra = new ExtraSend(platform, record_transaction, reasonText);

            this.extra = extra;
        }
Esempio n. 2
0
        public ObjectSend(string action, string ticket_id, string state, string service_id, string counterID, string platform, bool record_transaction, List <string> lstSer, List <string> lstCou)
        {
            this.action     = action;
            this.service_id = service_id;
            this.state      = state;
            this.ticket_id  = ticket_id;
            this.counter_id = counterID;
            ExtraSend extra = new ExtraSend(platform, record_transaction, lstSer, lstCou);

            this.extra = extra;
        }
Esempio n. 3
0
        public ObjectSend(string action, string ticket_id, string state, string service_id, string counterID, string cnum, int mtime, string platform, bool record_transaction)
        {
            this.action     = action;
            this.service_id = service_id;
            this.state      = state;
            this.cnum       = cnum;
            this.mtime      = mtime;
            this.ticket_id  = ticket_id;
            ExtraSend extra = new ExtraSend(platform, record_transaction);

            this.extra      = extra;
            this.counter_id = counterID;
        }