예제 #1
0
        public Command CreateCourse(CourseViewModel course)
        {
            var courseCommand = course.ToCreateCommand();

            new CreateCourseService(courseCommand, _courseRepository);

            return(courseCommand);
        }