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