public IAdminService CreateAdminService()
        {
            SetSecurityProtocol();
            var adminCredentials = new AdminService.APICredentials {
                DeveloperKey = this._developerKey, Password = this._developerPassword
            };

            return(new Admin.AdminService(adminCredentials));
        }
 public IAdminService CreateAdminService()
 {
     var adminCredentials = new AdminService.APICredentials { DeveloperKey = this._developerKey, Password = this._developerPassword };
     return new Admin.AdminService( adminCredentials );
 }