Example #1
0
        public async Task <IEnumerable <Note> > GetAllAsync()
        {
            var o = await _repository.GetAll(PartitionKey);

            return(o.Select(DeserializingNote));
        }