Exemplo n.º 1
0
 public List <CsHabilitationProgram> ProgramSelectAll()
 {
     try
     {
         return(new DBUserHabilitation().ProgramSelectAll());
     }
     catch (Exception ex)
     {
         ErrorManager.LogException(this, ex);
         return(null);
     }
 }
Exemplo n.º 2
0
 public bool UpdateControleur(List <CsControleur> sControleur)
 {
     try
     {
         return(new DBFRAUDE().UpdateControleur(sControleur));
     }
     catch (Exception ex)
     {
         ErrorManager.LogException(this, ex);
         return(false);
     }
 }
Exemplo n.º 3
0
 public List <CsCentre> RetourneListeDesCentre()
 {
     try
     {
         return(new CommonDAL().GetCentre());
     }
     catch (Exception ex)
     {
         ErrorManager.LogException(this, ex);
         return(null);
     }
 }
Exemplo n.º 4
0
 public List <CsSite> GetAllSite()
 {
     try
     {
         return(new DBAdmRoles().GetAllSite());
     }
     catch (Exception ex)
     {
         ErrorManager.LogException(this, ex);
         return(null);
     }
 }
Exemplo n.º 5
0
 public CsUtilisateur VerifieUserExist(string LoginName)
 {
     try
     {
         return(new DBAuthentification().VerifieUserExist(LoginName));
     }
     catch (Exception ex)
     {
         ErrorManager.LogException(this, ex);
         return(null);
     }
 }
Exemplo n.º 6
0
 public bool?DeleteUser(CsUtilisateur user)
 {
     try
     {
         return(new DBAdmUsers().Delete(user));
     }
     catch (Exception ex)
     {
         ErrorManager.LogException(this, ex);
         return(null);
     }
 }
Exemplo n.º 7
0
 public List <CsQualiteExpert> SelectAllQualiteExpert()
 {
     try
     {
         return(new DBFRAUDE().SelectAllQualiteExpert());
     }
     catch (Exception ex)
     {
         ErrorManager.LogException(this, ex);
         return(null);
     }
 }
Exemplo n.º 8
0
 public List <CsHistoriquePassword> RetourneHistoriqueConnectionfromListUser(List <int?> idUser)
 {
     try
     {
         return(new DBAdmUsers().RetourneHistoriqueConnectionFromListUser(idUser));
     }
     catch (Exception ex)
     {
         ErrorManager.LogException(this, ex);
         return(null);
     }
 }
Exemplo n.º 9
0
 public List <CsMoyenDenomciation> SelectAllMoyenDenomciation()
 {
     try
     {
         return(new DBFRAUDE().SelectAllMoyenDenomciation());
     }
     catch (Exception ex)
     {
         ErrorManager.LogException(this, ex);
         return(null);
     }
 }
Exemplo n.º 10
0
 public List <CsOrganeFraude> SelectAllOrganeFraude()
 {
     try
     {
         return(new DBFRAUDE().SelectAllOrganeFraude());
     }
     catch (Exception ex)
     {
         ErrorManager.LogException(this, ex);
         return(null);
     }
 }
Exemplo n.º 11
0
 public List <CsActionSurCompteur> SelectAllActionSurCompteur()
 {
     try
     {
         return(new DBFRAUDE().SelectAllActionSurCompteur());
     }
     catch (Exception ex)
     {
         ErrorManager.LogException(this, ex);
         return(null);
     }
 }
Exemplo n.º 12
0
 public List <CsMArqueDisjoncteur> SelectAllMarqueDisjoncteur()
 {
     try
     {
         return(new DBFRAUDE().SelectAllMarqueDisjoncteur());
     }
     catch (Exception ex)
     {
         ErrorManager.LogException(this, ex);
         return(null);
     }
 }
Exemplo n.º 13
0
 public bool UpdateCompteurFraude(List <CsCompteurFraude> sCompteurFraude)
 {
     try
     {
         return(new DBFRAUDE().UpdateCompteurFraude(sCompteurFraude));
     }
     catch (Exception ex)
     {
         ErrorManager.LogException(this, ex);
         return(false);
     }
 }
Exemplo n.º 14
0
 public bool MisaAjourImportColonne(aImportFichierColonne lacolonne)
 {
     try
     {
         return(new DbImportFichier().MAJImportFichierColonne(lacolonne));
     }
     catch (Exception ex)
     {
         ErrorManager.LogException(this, ex);
         return(false);
     }
 }
Exemplo n.º 15
0
 public List <CsDecisionfrd> SelectAllDecision()
 {
     try
     {
         return(new DBFRAUDE().SelectAllDecisionfrd());
     }
     catch (Exception ex)
     {
         ErrorManager.LogException(this, ex);
         return(null);
     }
 }
Exemplo n.º 16
0
 public bool DeleteColonne(int codeColonne)
 {
     try
     {
         return(new DbImportFichier().DeleteImportColonne(codeColonne));
     }
     catch (Exception ex)
     {
         ErrorManager.LogException(this, ex);
         return(false);
     }
 }
Exemplo n.º 17
0
 public bool InsertionFraudeConsommation(CsDemandeFraude sDemandeFraude)
 {
     try
     {
         return(new DBFRAUDE().InsertionFraudeConsommation(sDemandeFraude));
     }
     catch (Exception ex)
     {
         ErrorManager.LogException(this, ex);
         return(false);
     }
 }
Exemplo n.º 18
0
 public CsUtilisateur GetByLoginName(string LoginName)
 {
     try
     {
         return(new DBAuthentification().GetByLoginName(LoginName));
     }
     catch (Exception ex)
     {
         ErrorManager.LogException(this, ex);
         return(null);
     }
 }
Exemplo n.º 19
0
 public string ValiderDemandeInitailisation(CsDemandeFraude LaDemannde)
 {
     try
     {
         return(new DBFRAUDE().ValiderDemandeFraude(LaDemannde));
     }
     catch (Exception ex)
     {
         ErrorManager.LogException(this, ex);
         return(string.Empty);
     }
 }
Exemplo n.º 20
0
 public bool UpdateUser(CsUtilisateur admUsers, bool IsInitpassword)
 {
     try
     {
         return(new DBAdmUsers().Update(admUsers, IsInitpassword));
     }
     catch (Exception ex)
     {
         ErrorManager.LogException(this, ex);
         return(false);
     }
 }
Exemplo n.º 21
0
 public List <CsClient> SelectAllClient()
 {
     try
     {
         return(new DBFRAUDE().SelectAllClientIWebs());
     }
     catch (Exception ex)
     {
         ErrorManager.LogException(this, ex);
         return(null);
     }
 }
Exemplo n.º 22
0
 public bool DeleteUserByGuid(Guid guid)
 {
     try
     {
         return(new DBAdmUsers().Delete(guid));
     }
     catch (Exception ex)
     {
         ErrorManager.LogException(this, ex);
         return(false);
     }
 }
Exemplo n.º 23
0
 public int InsertFraudeDenociateur(CsDemandeFraude sDemandeFraude)
 {
     try
     {
         return(new DBFRAUDE().InsertFraudeDenociateur(sDemandeFraude.Fraude, sDemandeFraude.Denonciateur, sDemandeFraude.ClientFraude));
     }
     catch (Exception ex)
     {
         ErrorManager.LogException(this, ex);
         return(1);
     }
 }
Exemplo n.º 24
0
 public List <CsModule> RetourneAllModuleFonction()
 {
     try
     {
         return(new DBUserHabilitation().RetourneAllModuleFonction());
     }
     catch (Exception ex)
     {
         ErrorManager.LogException(this, ex);
         return(null);
     }
 }
Exemplo n.º 25
0
 public bool InsertFraude(CsFraude sFraude)
 {
     try
     {
         return(new DBFRAUDE().InsertFraude(sFraude));
     }
     catch (Exception ex)
     {
         ErrorManager.LogException(this, ex);
         return(false);
     }
 }
Exemplo n.º 26
0
 public List <CsFonction> SELECT_All_Fonction()
 {
     try
     {
         return(new DBUserHabilitation().SELECT_All_Fonction());
     }
     catch (Exception ex)
     {
         ErrorManager.LogException(this, ex);
         return(null);
     }
 }
Exemplo n.º 27
0
 public bool InsererPaiementMobile(List <CsLclient> Factures)
 {
     try
     {
         return(new DBAccueil().InsererPaiementsMobile(Factures));
     }
     catch (Exception ex)
     {
         ErrorManager.LogException(this, ex);
         return(false);
     }
 }
Exemplo n.º 28
0
 public bool InsertionModuleDeFonction(List <CsModuleDeFonction> modules)
 {
     try
     {
         return(new DBModuleDeFonction().InsertionModuleDeFonction(modules));
     }
     catch (Exception ex)
     {
         ErrorManager.LogException(this, ex);
         return(false);
     }
 }
Exemplo n.º 29
0
 public List <CsControle> SelectAllControle()
 {
     try
     {
         return(new DBFRAUDE().SelectAllControle());
     }
     catch (Exception ex)
     {
         ErrorManager.LogException(this, ex);
         return(null);
     }
 }