Sales/Invoice.cs
changeset 1 80c685d55d63
parent 0 cfa10fbf52b3
child 2 0907765a8b2e
equal deleted inserted replaced
0:cfa10fbf52b3 1:80c685d55d63
    37         public double getFinalResult()
    37         public double getFinalResult()
    38         {            
    38         {            
    39             return value;
    39             return value;
    40         }
    40         }
    41 
    41 
    42         //Rabatt auf den Netto Preis
    42         // Rabatt auf den Netto Preis
    43         private double Rabatt()
    43         private double Rabatt()
    44         {
    44         {
    45             if (value > 1000.0)
    45             if (value > 1000.0)
    46             {
    46             {
    47                 value *= 0.75;
    47                 value *= 0.75;