コード例 #1
0
ファイル: Factura.cs プロジェクト: dpalat/GorilaGestion
        partial void Total_Compute(ref decimal result)
        {
            decimal subTotal = 0;

            foreach (var item in this.FacturasArticulos)
            {
                subTotal = subTotal + item.Monto;
            }
            var facturador = new Facturador();

            result = facturador.ObtenerTotal(subTotal, Convert.ToDecimal(this.Recargo), Convert.ToDecimal(this.Descuento));
        }
コード例 #2
0
        public void ObtenerTotalBasico()
        {
            var facturador = new Facturador();

            Assert.AreEqual(14, facturador.ObtenerTotal(10, 6, 2), "El total esta mal calculado.");
        }