Exemplo n.º 1
0
        public LogWrapper(Log log)
        {
            m_log = log;

            incident = new Incident();
            ID incId = new ID();
            incId.id = 0;
            incident.ID = incId;

            contact = new RightNowServiceReference.Contact();
            ID contactId = new ID();
            contactId.id = 0;
            contact.ID = contactId;
        }
Exemplo n.º 2
0
        public LogWrapper(Log log)
        {
            m_log = log;

            incident = new Incident();
            ID incId = new ID();

            incId.id    = 0;
            incident.ID = incId;

            contact = new RightNowServiceReference.Contact();
            ID contactId = new ID();

            contactId.id = 0;
            contact.ID   = contactId;
        }
Exemplo n.º 3
0
 public void ClickLog(Incident incident = null, RightNowServiceReference.Contact contact = null, string LogMessage = null, string LogNote = null, string source = null, int timeElapsed = 0)
 {
 }
Exemplo n.º 4
0
 public void NoticeLog(Incident incident = null, RightNowServiceReference.Contact contact = null, string LogMessage = null, string LogNote = null, string source = null, int timeElapsed = 0)
 {
     this.notice(LogMessage, LogNote, incident, contact, source, _businessFunction, timeElapsed, _host);
 }
Exemplo n.º 5
0
 public void ClickLog(Incident incident = null, RightNowServiceReference.Contact contact = null, string LogMessage = null, string LogNote = null, string Source = null, int TimeElapsed = 0)
 {
     this.click(LogMessage, LogNote, incident, contact, Source, _businessFunction, TimeElapsed, _host);
 }