示例#1
0
        public async Task <bool> ExistsById(int id)
        {
            var existDb = await _moviesRepository.ExistsById(id);

            return(existDb);
        }