Ejemplo n.º 1
0
 public AssemblyController(IAssemblyService assemblyService, IFileInfoService fileInfoService
                           , IServiceInfoService serviceInfoService)
 {
     _assemblyService    = assemblyService;
     _serviceInfoService = serviceInfoService;
     _fileInfoService    = fileInfoService;
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ProcessingVelocityHandler"/> class.
 /// </summary>
 /// <param name="service">The service.</param>
 /// <param name="processingVelocityRepository">The processing velocity repository.</param>
 /// <param name="processingVelocityTranslator">The processing velocity translator.</param>
 public ProcessingVelocityHandler(
     IServiceInfoService service,
     IMonitoringRepository <ProcessingVelocityEntity> processingVelocityRepository,
     ITranslator processingVelocityTranslator)
     : base(service, processingVelocityRepository, processingVelocityTranslator)
 {
 }
Ejemplo n.º 3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="HeartBeatHandler"/> class.
 /// </summary>
 /// <param name="serviceInfoService">The service info service.</param>
 /// <param name="heartBeatRepository">The heart beat repository.</param>
 /// <param name="heartBeatTranslator">The heart beat translator.</param>
 public HeartBeatHandler(
     IServiceInfoService serviceInfoService,
     IMonitoringRepository <HeartBeatEntity> heartBeatRepository,
     ITranslator heartBeatTranslator)
     : base(serviceInfoService, heartBeatRepository, heartBeatTranslator)
 {
 }
Ejemplo n.º 4
0
 /// <summary>
 /// Initializes a new instance of the <see cref="HealthHandler"/> class.
 /// </summary>
 /// <param name="serviceInfoService">The service info service.</param>
 /// <param name="healthRepository">The health repository.</param>
 /// <param name="healthTranslator">The health translator.</param>
 public HealthHandler(
     IServiceInfoService serviceInfoService,
     IMonitoringRepository <HealthEntity> healthRepository,
     ITranslator healthTranslator)
     : base(serviceInfoService, healthRepository, healthTranslator)
 {
 }
Ejemplo n.º 5
0
 /// <summary>
 /// Initializes a new instance of the <see cref="MessageTypesHandler"/> class.
 /// </summary>
 /// <param name="serviceInfoService">The service info service.</param>
 /// <param name="repository">The repository.</param>
 /// <param name="translator">The translator.</param>
 public MessageTypesHandler(
     IServiceInfoService serviceInfoService,
     IMonitoringRepository <MessageTypesEntity> repository,
     ITranslator translator)
     : base(serviceInfoService, repository, translator)
 {
 }
Ejemplo n.º 6
0
 /// <summary>
 /// Initializes a new instance of the <see cref="QueueLoadHandler"/> class.
 /// </summary>
 /// <param name="service">The service.</param>
 /// <param name="queueLoadRepository">The queue load repository.</param>
 /// <param name="queueLoadTranslator">The queue load translator.</param>
 public QueueLoadHandler(
     IServiceInfoService service,
     IMonitoringRepository <QueueLoadEntity> queueLoadRepository,
     ITranslator queueLoadTranslator)
     : base(service, queueLoadRepository, queueLoadTranslator)
 {
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="MonitoringMessageHandler&lt;TMessage, TEntity&gt;"/> class.
 /// </summary>
 /// <param name="serviceInfoService">The service info service.</param>
 /// <param name="repository">The repository.</param>
 /// <param name="translator">The translator</param>
 protected MonitoringMessageHandler(
     IServiceInfoService serviceInfoService,
     IMonitoringRepository <TEntity> repository,
     ITranslator translator)
     : this(repository, translator)
 {
     _serviceInfoService = serviceInfoService;
     _serviceInfoService.ServiceNotExist += OnServiceNotExist;
 }
Ejemplo n.º 8
0
 public ServicesController(IServiceInfoService serviceInfoService, IServiceService serviceService, ICustomerService customerService, IAddressService addressService, IViewRenderService viewRenderService, IHtmlToPdfConverter htmlToPdfConverter, IWebHostEnvironment webHostEnvironment, IServiceNumberService serviceNumberService, IUploadService uploadService)
 {
     this.serviceInfoService   = serviceInfoService;
     this.serviceService       = serviceService;
     this.customerService      = customerService;
     this.addressService       = addressService;
     this.viewRenderService    = viewRenderService;
     this.htmlToPdfConverter   = htmlToPdfConverter;
     this.webHostEnvironment   = webHostEnvironment;
     this.serviceNumberService = serviceNumberService;
     this.uploadService        = uploadService;
 }
Ejemplo n.º 9
0
 public OrdersController(IOrderService orderService, IServiceService serviceService, IServiceNumberService numberService, IServiceInfoService serviceInfoService, IViewRenderService viewRenderService, IHtmlToPdfConverter htmlToPdfConverter, IWebHostEnvironment environment, IAddressService addressService, ITasksService tasksService, IHubContext <TaskHub, ITaskHub> context, ICustomerService customerService, IUploadService uploadService)
 {
     this.orderService       = orderService;
     this.serviceService     = serviceService;
     this.numberService      = numberService;
     this.serviceInfoService = serviceInfoService;
     this.viewRenderService  = viewRenderService;
     this.htmlToPdfConverter = htmlToPdfConverter;
     this.environment        = environment;
     this.addressService     = addressService;
     this.tasksService       = tasksService;
     this.context            = context;
     this.customerService    = customerService;
     this.uploadService      = uploadService;
 }
 public IdentityController(IIdentityService ıdentityService, IWorkplaceService workplaceService,
                           IMaritalStatusService maritalStatusService, IGenderService genderService, IDisabilityStatusService disabilityStatusService,
                           IBloodGroupService bloodGroupService, IServiceInfoService serviceInfoService, ICurrentStatusService currentStatusService,
                           IWorkingStatusService workingStatusService, IShiftInfoService shiftInfoService, IAdminStatusService adminStatusService, IProvinceService provinceService, ITisJobCodeService tisJobCodeService, IPrivateStatusService privateStatusService)
 {
     _ıdentityService         = ıdentityService;
     _workplaceService        = workplaceService;
     _maritalStatusService    = maritalStatusService;
     _genderService           = genderService;
     _disabilityStatusService = disabilityStatusService;
     _bloodGroupService       = bloodGroupService;
     _serviceInfoService      = serviceInfoService;
     _currentStatusService    = currentStatusService;
     _workingStatusService    = workingStatusService;
     _shiftInfoService        = shiftInfoService;
     _adminStatusService      = adminStatusService;
     _provinceService         = provinceService;
     _tisJobCodeService       = tisJobCodeService;
     _privateStatusService    = privateStatusService;
 }
Ejemplo n.º 11
0
 public HomeController(
     IServiceInfoService serviceInfoService,
     IUserService userService,
     IWorkExampleService workExampleService,
     IBlogService blogService,
     IBrandService brandService,
     ITestimonialService testimonialService,
     IContactsService contactsService,
     IMessageService messageService,
     RoleManager <IdentityRole> roleManager)
 {
     _serviceInfoService = serviceInfoService;
     _userService        = userService;
     _workExampleService = workExampleService;
     _blogService        = blogService;
     _brandService       = brandService;
     _testimonialService = testimonialService;
     _contactsService    = contactsService;
     _messageService     = messageService;
     _roleManager        = roleManager;
 }
 public OrderService(IDeletableEntityRepository <Order> orderRepo, IServiceInfoService serviceInfoService, IServiceNumberService serviceNumberService)
 {
     this.orderRepo            = orderRepo;
     this.serviceInfoService   = serviceInfoService;
     this.serviceNumberService = serviceNumberService;
 }
Ejemplo n.º 13
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ErrorRouterHandler"/> class.
 /// </summary>
 /// <param name="serviceInfoService">The service info service.</param>
 /// <param name="repository">The repository.</param>
 /// <param name="translator">The translator.</param>
 public ErrorRouterHandler(IServiceInfoService serviceInfoService, IMonitoringRepository <ErrorRouterEntity> repository, ITranslator translator)
     : base(serviceInfoService, repository, translator)
 {
 }
Ejemplo n.º 14
0
 public ServiceInfoController(IServiceInfoService serviceInfoService)
 {
     this.ServiceInfoService = serviceInfoService;
 }
Ejemplo n.º 15
0
 /// <summary>
 /// Initializes a new instance of the <see cref="TransferVelocityHandler"/> class.
 /// </summary>
 /// <param name="repository">The repository.</param>
 /// <param name="translator">The translator.</param>
 /// <param name="serviceInfoService">The service info service.</param>
 public TransferVelocityHandler(IMonitoringRepository <TransferVelocityEntity> repository,
                                ITranslator translator,
                                IServiceInfoService serviceInfoService)
     : base(serviceInfoService, repository, translator)
 {
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="ErrorOnHanldersMessageHandler"/> class.
 /// </summary>
 /// <param name="serviceInfoService">The service info service.</param>
 /// <param name="repository">The repository.</param>
 /// <param name="translator">The translator.</param>
 public ErrorOnHanldersMessageHandler(IServiceInfoService serviceInfoService, IMonitoringRepository <ErrorHandlerEntity> repository, ITranslator translator) : base(serviceInfoService, repository, translator)
 {
 }
Ejemplo n.º 17
0
 public EngineeringController(ITasksService taskService, IOrderService orderService, IServiceInfoService serviceInfoService)
 {
     this.taskService        = taskService;
     this.orderService       = orderService;
     this.serviceInfoService = serviceInfoService;
 }
Ejemplo n.º 18
0
 /// <summary>
 /// Initializes a new instance of the <see cref="InputQueueHandler"/> class.
 /// </summary>
 /// <param name="serviceInfoService">The service info service.</param>
 /// <param name="translator">The translator.</param>
 public InputQueueHandler(
     IServiceInfoService serviceInfoService,
     ITranslator translator)
     : base(serviceInfoService, null, translator)
 {
 }
Ejemplo n.º 19
0
 /// <summary>
 /// Initializes a new instance of the <see cref="MessageTypesHandler"/> class.
 /// </summary>
 /// <param name="serviceInfoService">The service info service.</param>
 public OutputTypesHandler(IServiceInfoService serviceInfoService)
 {
     _serviceInfoService = serviceInfoService;
 }
Ejemplo n.º 20
0
 public ServicesController(IServiceInfoService serviceInfoService, IUserService userService)
     : base(userService)
 {
     _serviceInfoService = serviceInfoService;
 }