/// <summary>
 /// Gets value from config file by specifying key i.e, section name in config file as an argument.
 /// </summary>
 /// <param name="key">section name in config file</param>
 /// <returns>return value in string fomrat</returns>
 public string GetValue(string key)
 {
     return(configParser.GetValue(key));
 }