コード例 #1
0
        public void DeleteTask(int id)
        {
            var task = _repository.Get(id);

            if (_verify.IsNull(task))
            {
                throw new Exception("Tarefa não encontrada");
            }

            _repository.Remove(task);
        }