Exemplo n.º 1
0
        private DataSet getChannelInfo()
        {
            // Get * Info From NS_ADAPTER_CHANNEL  for ADAPTER_CHANNEL_ID
            DANotification oDANotification = new DANotification();

            return(oDANotification.getChannelInfo(this.AdapterChannelId));
        }
Exemplo n.º 2
0
        public void Update(Notification notification)
        {
            DANotification _daNotification = new DANotification();

            _daNotification.Update(notification);
        }
Exemplo n.º 3
0
        public void InsertNotification(Notification notification)
        {
            DANotification oDANotification = new DANotification();

            this.NotificationId = Convert.ToString(oDANotification.InsertNotification(notification));
        }
Exemplo n.º 4
0
        public string SelectMaxNotificationId()
        {
            DANotification oDANotification = new DANotification();

            return(oDANotification.GetMaxNotificationId());
        }
Exemplo n.º 5
0
 public Notification()
 {
     daNotification = new DANotification();
     logger         = Logger.getInstance();
 }