public OrcamentoAgregate AlterarStatus(OrcamentoAgregate agregate, StatusOrcamento status) { agregate.statusOrcamento = status; return(this); }
public OrcamentoAgregate AdicionarItem(OrcamentoAgregate agregate, Item item) { agregate.listaItens.Add(item); return(this); }