public async Task <bool> CreateIfNotExistsAsync(T item)
        {
            var res = await _table.CreateIfNotExistsAsync(item);

            await _cache.CreateIfNotExistsAsync(item);

            return(res);
        }
        public async Task CreateIfNotExistsAsync(T item)
        {
            await _table.CreateIfNotExistsAsync(item);

            await _cache.CreateIfNotExistsAsync(item);
        }