예제 #1
0
 public BaseService(IServicesExecutor <TDto, TEntity> servicesExecutor)
 => _servicesExecutor = servicesExecutor;
예제 #2
0
 public CategoryService(IServicesExecutor <CategoryDTO, Category> servicesExecutor, IStudyMaterialService studyMaterialService, IErrorHandler errorHandler, OrhedgeContext context)
     : base(servicesExecutor) => (_context, _studyMaterialService, _errorHandler) = (context, studyMaterialService, errorHandler);
예제 #3
0
 public StudentService(IServicesExecutor <StudentDTO, StudentEntity> servicesExecutor)
     : base(servicesExecutor)
 {
 }
예제 #4
0
 public RegistrationService(
     IServicesExecutor <RegistrationDTO, Registration> servicesExecutor)
 => _servicesExecutor = servicesExecutor;
예제 #5
0
 public CourseService(IServicesExecutor <CourseDTO, Course> servicesExecutor)
     : base(servicesExecutor)
 {
 }
예제 #6
0
 public ChatMessageService(IServicesExecutor <ChatMessageDTO, ChatMessage> servicesExecutor, IStudentService studentService, OrhedgeContext orhedgeContext) :
     base(servicesExecutor)
 {
     _context        = orhedgeContext;
     _studentService = studentService;
 }
예제 #7
0
 public StudyMaterialService(IServicesExecutor <StudyMaterialDTO, StudyMaterial> servicesExecutor)
     : base(servicesExecutor)
 {
 }