示例#1
0
        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
            };
        }
示例#2
0
 public RapportGlobalDtoJSon RapportGlobal()
 {
     RapportServices s1 = new RapportServices(uow);
     return s1.GetRapportGlobal(ProfileUser.GroupeId);
 }
示例#3
0
 public RapportAuditSoldeDtoJSon RapportAuditSolde()
 {
     RapportServices s1 = new RapportServices(uow);
     return s1.GetRapportAuditSolde(ProfileUser.GroupeId);
 }