Ejemplo n.º 1
0
        public SystemNotifyProxy Notify_GetSystemNotify(int notifyID)
        {
            if (!CheckClient())
            {
                return(null);
            }

            SystemNotify temp = NotifyBO.Instance.GetSystemNotify(notifyID);

            return(ProxyConverter.GetSystemNotifyProxy(temp));
        }
Ejemplo n.º 2
0
        public SystemNotifyProxy[] Notify_SystemNotifies()
        {
            if (!CheckClient())
            {
                return(null);
            }
            SystemNotifyProxy[] systemnotifies = new SystemNotifyProxy[SystemNotifyProvider.CurrentSystemNotifys.Count];
            int i = 0;

            foreach (SystemNotify sn in SystemNotifyProvider.CurrentSystemNotifys)
            {
                systemnotifies[i++] = ProxyConverter.GetSystemNotifyProxy(sn);
            }

            return(systemnotifies);
        }
Ejemplo n.º 3
0
        public List <SystemNotifyProxy> Notify_GetSystemNotifys()
        {
            if (!CheckClient())
            {
                return(null);
            }

            SystemNotifyCollection   temp   = NotifyBO.Instance.GetSystemNotifys();
            List <SystemNotifyProxy> result = new List <SystemNotifyProxy>();

            foreach (SystemNotify notify in temp)
            {
                result.Add(ProxyConverter.GetSystemNotifyProxy(notify));
            }

            return(result);
        }
Ejemplo n.º 4
0
 void NotifyBO_OnSystemNotifyCreate(SystemNotify notify)
 {
     this.CreateInstruct(0, InstructType.Notify_SystemNotifyCreate, ProxyConverter.GetSystemNotifyProxy(notify));
 }