public async Task <(Course course, bool exists)> ExecuteAddIfNotExists(Course course)
        {
            var sut = new CourseRepository(_context);

            return(await sut.AddIfNotExists(course));
        }