Esempio n. 1
0
        public K2Firmware(string userAccount = null)
        {
            if (!string.IsNullOrEmpty(userAccount))
            {
                _userAccount = userAccount;
            }

            _client       = new BlackpearlClient(_userAccount);
            _k2Server     = new K2Server();
            _smartFormUrl = ConfigurationManager.AppSettings["SmartFormUrl"] ?? "https://forms.nagaworld.com/";
        }
Esempio n. 2
0
 public BlackpearlClient(string identity)
 {
     _server           = new K2Server();
     this._userAccount = identity.FQNWithK2Label();
 }