public SqlGetPhysicalFilePathWorker(SqlConnection connection, out ISqlGetPhysicalFilePathWorkerReturnedData data)
     : base(connection)
 {
     data = this.data = new ReturnedData();
 }
Ejemplo n.º 2
0
 public SqlWorkerBase CreateSqlGetPhysicalFilePathWorker(ISqlWorkerConnection connection, out ISqlGetPhysicalFilePathWorkerReturnedData data)
 {
     return new SqlGetPhysicalFilePathWorker(connection.Connection, out data);
 }
   public SqlGetPhysicalFilePathWorker(string server, string database, AuthenticationType authenticationType, string user, string password,
 out ISqlGetPhysicalFilePathWorkerReturnedData data)
       : base(server, database, authenticationType, user, password)
   {
       data = this.data = new ReturnedData();
   }
Ejemplo n.º 4
0
 public SqlWorkerBase CreateSqlGetPhysicalFilePathWorker(string server, string database, AuthenticationType authenticationType, string user, string password, out ISqlGetPhysicalFilePathWorkerReturnedData data)
 {
     return new SqlGetPhysicalFilePathWorker(server, database, authenticationType, user, password, out data);
 }