Advertisement
Guest User

Untitled

a guest
Apr 7th, 2020
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.59 KB | None | 0 0
  1. public class suiviCommande
  2.     {
  3.         public String commandeOS{get;set;}
  4.         public decimal MontantBudgete{get;set;}
  5.         public decimal MontantCommande{get;set;}
  6.         public decimal MontantTotalSuiviFacture{get;set;}
  7.         public decimal MontantTotalSuiviAvoirDemande{get;set;}=msa=A.A.R H.=MontantTotalAvoirRestantRecevoir__c
  8.         public decimal coutReel{get;set;} =MontantTotalSuiviFacture__c+MontantTotalAvoirRestantRecevoir__c
  9.         public decimal gainsTheorique{get;set;}
  10.         public decimal gainsReel{get;set;}
  11.         public String Commentaires{get;set;}  
  12.         public String CommentairesFranchises{get;set;}    
  13.         public decimal coutSimuleRT{get;set;}
  14.         public suiviCommande(String commandeOS,decimal MontantBudgete, decimal MontantCommande, decimal MontantTotalSuiviFacture, decimal MontantTotalSuiviAvoirDemande, decimal coutReel, decimal gainsTheorique, decimal gainsReel, String Commentaires, String CommentairesFranchises, decimal coutSimuleRT)
  15.         {
  16.             this.commandeOS = commandeOS;
  17.             this.MontantBudgete = MontantBudgete;
  18.             this.MontantCommande = MontantCommande;
  19.             this.MontantTotalSuiviFacture = MontantTotalSuiviFacture;
  20.             this.MontantTotalSuiviAvoirDemande = MontantTotalSuiviAvoirDemande;
  21.             this.coutReel = coutReel;
  22.             this.gainsTheorique = gainsTheorique;
  23.             this.gainsReel = gainsReel;
  24.             this.Commentaires = Commentaires;
  25.             this.CommentairesFranchises = CommentairesFranchises;
  26.             this.coutSimuleRT = coutSimuleRT;
  27.         }
  28.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement