Пример #1
0
        public async Task <ActionResult <Show> > DelteShow(int id)
        {
            var show = await _showsRepository.DeleteShow(id);

            if (show == null)
            {
                return(NotFound());
            }
            return(show);
        }