public SQLServerCreator(SqlServerDbSandBoxConnection sqlConnection)
 {
     _sqlConnection = sqlConnection;
 }
 public SQLServerCreator(IConnectionStringBuilder connectionStringBuilder)
 {
     _sqlConnection = new SqlServerDbSandBoxConnection(connectionStringBuilder);
 }