public AlerteIncoherenceSolde AlerteIncoherence() { // Rapport audit var s1 = new RapportServices(uow); var audit = s1.GetRapportAuditSolde(ProfileUser.GroupeId); // Calcule de la cohérence var coherence = s1.getCoherenceSoldes(audit); // Retour return new AlerteIncoherenceSolde { libelle = "Incohérence des soldes" , solde = coherence , audit = audit //solde = 12.0M }; }
public RapportAuditSoldeDtoJSon RapportAuditSolde() { RapportServices s1 = new RapportServices(uow); return s1.GetRapportAuditSolde(ProfileUser.GroupeId); }