public SqlCheckingAdminRightsWorker(string server, AuthenticationType authenticationType, string user, string password,
 out ISqlCheckingAdminRightsWorkerReturnedData data)
       : base(server, "", authenticationType, user, password)
   {
       data = this.data = new ReturnedData();
   }
Пример #2
0
   public SqlWorkerBase CreateSqlCheckingAdminRightsWorker(string server, AuthenticationType authenticationType, string user, string password,
 out ISqlCheckingAdminRightsWorkerReturnedData data)
   {
       return new SqlCheckingAdminRightsWorker(server, authenticationType, user, password, out data);
   }