Example #1
0
        public async Task Remove(int id)
        {
            var section = await _sectionRepository.FindById(id);

            await _sectionRepository.Disable(section);
        }