public void Remove(AccountPointNoticeMailEntity entity) { if (BaseIndexOf(entity) >= 0) { BaseRemove(entity.Account); } }
public void Add(AccountPointNoticeMailEntity entity) { BaseAdd(entity); // Add custom code here. }
public int IndexOf(AccountPointNoticeMailEntity entity) { return(BaseIndexOf(entity)); }