public async Task <bool> CreateStorageAccountAsync(StorageAccount sa)
        {
            MSStorageAccount mssa = StorageAccount.ConvertToMSStorageAccount(sa);

            mssa.ptc_account_id = this.GetPtcId();
            await App.MobileService.GetTable <MSStorageAccount>().InsertAsync(mssa);

            return(true);
        }