Esempio n. 1
0
   public SqlWorkerBase CreateSqlGetMsSqlServerProcessWorker(string server, AuthenticationType authenticationType, string user, string password,
 out ISqlGetMsSqlServerProcessWorkerReturnedData data)
   {
       return new SqlGetMsSqlServerProcessWorker(server, authenticationType, user, password, out data);
   }
   public SqlGetMsSqlServerProcessWorker(string server, AuthenticationType authenticationType, string user, string password,
 out ISqlGetMsSqlServerProcessWorkerReturnedData data)
       : base(server, "", authenticationType, user, password)
   {
       data = this.data = new ReturnedData();
   }