Exemplo n.º 1
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;
 }
Exemplo n.º 2
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;
 }
Exemplo n.º 3
0
 public ServiceInfoService(IDeletableEntityRepository <ServiceInfo> serviseInfoRepo, IDeletableEntityRepository <SimCard> simRepo, IServiceNumberService serviceNumberService)
 {
     this.serviseInfoRepo      = serviseInfoRepo;
     this.simRepo              = simRepo;
     this.serviceNumberService = serviceNumberService;
 }
 public OrderService(IDeletableEntityRepository <Order> orderRepo, IServiceInfoService serviceInfoService, IServiceNumberService serviceNumberService)
 {
     this.orderRepo            = orderRepo;
     this.serviceInfoService   = serviceInfoService;
     this.serviceNumberService = serviceNumberService;
 }