Beispiel #1
0
 public void ValidateUserAccount()
 {
     //Try to run sql procedure to check the user accounts, the procedure changes the state of the user accordingly
     try
     {
         TSql.ExecuteNonQuery("spCheckUserAccountExpiry", this.ConnectionString);
     }
     catch (Exception ex)
     {
         EventLogger.LogEvent(EventLogType.Error, ex);
     }
 }