Esempio n. 1
0
        public OrcamentoAgregate AlterarStatus(OrcamentoAgregate agregate, StatusOrcamento status)
        {
            agregate.statusOrcamento = status;

            return(this);
        }
Esempio n. 2
0
        public OrcamentoAgregate AdicionarItem(OrcamentoAgregate agregate, Item item)
        {
            agregate.listaItens.Add(item);

            return(this);
        }