Ejemplo n.º 1
0
 public string GetConnectionStringWith(string connectionName)
 {
     if (connectionName.IsNullEmptyOrWhiteSpace())
     {
         throw new ArgumentNullException
               (
                   "connectionstring",
                   "db connstring par null or empty"
               );
     }
     return(_connectionSettings.GetConnectionStringBy(connectionName));
 }