Exemplo n.º 1
0
 public void Remove(AccountPointNoticeMailEntity entity)
 {
     if (BaseIndexOf(entity) >= 0)
     {
         BaseRemove(entity.Account);
     }
 }
Exemplo n.º 2
0
        public void Add(AccountPointNoticeMailEntity entity)
        {
            BaseAdd(entity);

            // Add custom code here.
        }
Exemplo n.º 3
0
 public int IndexOf(AccountPointNoticeMailEntity entity)
 {
     return(BaseIndexOf(entity));
 }