コード例 #1
0
        public void Delete(int id)
        {
            if (id == 0)
            {
                throw new ArgumentException("The id can't be zero.");
            }

            repository.Delete(id);
        }
コード例 #2
0
 public void ExcluirContaCorrente(ContaCorrente pContaCorrente)
 {
     _dataset.Delete(pContaCorrente);
 }