コード例 #1
0
 public MessageService(IStudentExchangeDataContext studentExchangeDataContext, IUniversityService universityService, IFacultyService facultyService, ICourseOfStudyService courseOfStudyService, IGroupService groupService, IStudentService studentService)
 {
     _studentExchangeDataContext = studentExchangeDataContext;
     _universityService          = universityService;
     _facultyService             = facultyService;
     _courseOfStudyService       = courseOfStudyService;
     _groupService   = groupService;
     _studentService = studentService;
 }
コード例 #2
0
 public UniversityService(IStudentExchangeDataContext studentExchangeDataContext, IFacultyService facultyService)
 {
     _studentExchangeDataContext = studentExchangeDataContext;
     _facultyService             = facultyService;
 }
コード例 #3
0
 public GroupService(IStudentExchangeDataContext studentExchangeDataContext, ICourseOfStudyService courseOfStudyService)
 {
     _studentExchangeDataContext = studentExchangeDataContext;
     _courseOfStudyService       = courseOfStudyService;
 }
コード例 #4
0
 public AuthenticationService(IStudentExchangeDataContext studentExchangeDataContext)
 {
     _studentExchangeDataContext = studentExchangeDataContext;
 }
コード例 #5
0
 public AnnouncementService(IStudentExchangeDataContext studentExchangeDataContext, ICourseOfStudyService courseOfStudyService, IUniversityService universityService)
 {
     _studentExchangeDataContext = studentExchangeDataContext;
     _courseOfStudyService       = courseOfStudyService;
     _universityService          = universityService;
 }
コード例 #6
0
 public ProfileService(IStudentExchangeDataContext studentExchangeDataContext)
 {
     _studentExchangeDataContext = studentExchangeDataContext;
 }
コード例 #7
0
 public StudentService(IStudentExchangeDataContext studentExchangeDataContext)
 {
     _studentExchangeDataContext = studentExchangeDataContext;
 }
コード例 #8
0
 public CourseOfStudyService(IStudentExchangeDataContext studentExchangeDataContext)
 {
     _studentExchangeDataContext = studentExchangeDataContext;
 }