示例#1
0
 public void Remove(AccountPointNoticeMailEntity entity)
 {
     if (BaseIndexOf(entity) >= 0)
     {
         BaseRemove(entity.Account);
     }
 }
示例#2
0
        public void Add(AccountPointNoticeMailEntity entity)
        {
            BaseAdd(entity);

            // Add custom code here.
        }
示例#3
0
 public int IndexOf(AccountPointNoticeMailEntity entity)
 {
     return(BaseIndexOf(entity));
 }