コード例 #1
0
        public int SaveEncryptedPsmartShr(string encryptedShr)
        {
            Psmart_Store psmartStore = new Psmart_Store()
            {
                Status = "PENDING",
                uuid   = Guid.NewGuid().ToString(),
                SHR    = encryptedShr.ToString()
            };

            _result = _psmartStoreManager.SaveShr(psmartStore);
            return(_result);
        }
コード例 #2
0
 public int SaveShrFromMiddleware(Psmart_Store p)
 {
     return(_psmartStoreManager.SaveShr(p));
 }