コード例 #1
0
        public string CreateStudent(CreateStudentCommand command)
        {
            //command.CourseIds = new List<int>() { 4 };
            StudentsCommandHandler handler = new StudentsCommandHandler();

            return(handler.Handle(command));
        }
コード例 #2
0
        public string DeleteStudent(DeleteStudentCommand command)
        {
            StudentsCommandHandler handler = new StudentsCommandHandler();

            return(handler.Handle(command));
        }