Esempio n. 1
0
        public NotaFiscal Gera(Fatura fatura)
        {
            double valor = fatura.Valor;

            NotaFiscal nf = new NotaFiscal(valor, ImpostoSimplesSobreO(valor));

            Acao?.Executa(nf);

            return(nf);
        }