示例#1
0
        /*
         * Justificacion de Diseño = si quiere agregar mas condiciones q agregue más métodos a cumpleCondiciones.
         */

        public static bool cumpleCondiciones(Egreso egreso, Ingreso ingreso)
        {
            bool resultado = ingreso.EgresosNoTotalizanMonto() && EntraEnPeriodo(egreso, ingreso) && CubreMonto(egreso, ingreso);;

            return(resultado);
        }