/// <summary>
 /// Deserializes workflow markup into an CommonConfigurationDatabase object
 /// </summary>
 /// <param name="input">string workflow markup to deserialize</param>
 /// <param name="obj">Output CommonConfigurationDatabase object</param>
 /// <param name="exception">output Exception value if deserialize failed</param>
 /// <returns>true if this Serializer can deserialize the object; otherwise, false</returns>
 public static bool Deserialize(string input, out CommonConfigurationDatabase obj, out System.Exception exception)
 {
     exception = null;
     obj       = default(CommonConfigurationDatabase);
     try
     {
         obj = Deserialize(input);
         return(true);
     }
     catch (System.Exception ex)
     {
         exception = ex;
         return(false);
     }
 }
 public static bool Deserialize(string input, out CommonConfigurationDatabase obj)
 {
     System.Exception exception = null;
     return(Deserialize(input, out obj, out exception));
 }
 public CommonConfiguration()
 {
     this._searchEngine   = new CommonConfigurationSearchEngine();
     this._berlogicEngine = new CommonConfigurationBerlogicEngine();
     this._database       = new CommonConfigurationDatabase();
 }