Ejemplo n.º 1
0
        public async Task InsertOrReplaceAsync(IOperationResubmitt operation)
        {
            var entity = OperationResubmittEntity.Create(operation);

            await _table.InsertOrReplaceAsync(entity);
        }
Ejemplo n.º 2
0
        public async Task <IOperationResubmitt> GetAsync(string operationId)
        {
            var entity = await _table.GetDataAsync(OperationResubmittEntity.GetPartitionKey(), operationId);

            return(entity);
        }