Exemplo n.º 1
0
        public async Task <bool> ToggleNotePin(long noteId, long Id)
        {
            try
            {
                await redis.RemoveNotesRedisCache(Id);

                return(notesRL.ToggleNotePin(noteId, Id));
            }
            catch (Exception)
            {
                throw;
            }
        }