public void SaleSql_Delete_ShouldBeOk() { _venda = ObjectMotherSale.GetVenda(); _repository.Delete(_venda); Venda p = _repository.Get(_venda.Id); p.Should().BeNull(); }
public async Task <IActionResult> DeleteProduto(int id, int clienteId, int produtoId) { var venda = await repository.GetVenda(id, clienteId, produtoId); if (venda == null) { return(NotFound()); } repository.Delete(venda); await unitOfWork.CompleteAsync(); return(Ok(id)); }
public GenericResult <bool> Delete(int id) { GenericResult <bool> result = new GenericResult <bool>(); try { result.Result = service.Delete(id); if (!result.Result) { result.Errors = new string[] { $"Venda {id} não existe ou não pode ser deletado" } } ; } catch (Exception ex) { result.Errors = new string[] { ex.Message }; } return(result); }
public Task Delete(Guid vendaId) { return(_vendaRepository.Delete(vendaId)); }
public void Delete(Venda venda) { _repository.Delete(venda); }
public void Delete(Venda objeto) { _vendaRepository.Delete(objeto); }