예제 #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));
 }