Ejemplo n.º 1
0
        public ApprRejectEvent GetApprRejectEvent(int groupid)
        {
            ApprRejectEvent e = null;

            if (DicApprRejectEvent.TryGetValue(groupid, out e) == true)
            {
                e = DicApprRejectEvent[groupid];
            }
            return(e);
        }
Ejemplo n.º 2
0
 public void SetApprRejectEvent(int groupid, ApprRejectEvent e)
 {
     DicApprRejectEvent[groupid] = e;
 }