示例#1
0
 public int validateEngineer(string username, string password)
 {
     try
     {
         return(erepo.validateEngineer(username, password));
     }
     catch (BLException exp)
     {
         log.Error("Fehler bei der Authentifikation des Engineer.");
         throw new BLException("Fehler bei der Authentifikation des Engineer.", exp);
     }
 }