public DeptApprLineReflashEvent GetDeptApprLineReflashEvent(int groupid) { DeptApprLineReflashEvent e = null; if (DicDeptApprLineReflashEvent.TryGetValue(groupid, out e) == true) { e = DicDeptApprLineReflashEvent[groupid]; } return(e); }
public void SetDeptApprLineReflashEventAdd(int groupid, DeptApprLineReflashEvent e) { DeptApprLineReflashEvent temp = null; if (DicDeptApprLineReflashEvent.TryGetValue(groupid, out temp)) { DicDeptApprLineReflashEvent.Remove(groupid); } DicDeptApprLineReflashEvent[groupid] = e; }