Example #1
0
 public OwnerRepairController(IOwnerRepairService ownerRepairService, IOwnerService ownerService,
                              IRepairService repairService)
 {
     _ownerRepairService = ownerRepairService;
     _ownerService       = ownerService;
     _repairService      = repairService;
 }
 public InvoiceController(IInvoiceService invoiceService, IRepairService repairService, IRepairRepository repairRepository, IWebHostEnvironment webHostEnvironment)
 {
     _invoiceService     = invoiceService;
     _repairService      = repairService;
     _repairRepository   = repairRepository;
     _webHostEnvironment = webHostEnvironment;
 }
Example #3
0
 public PropertyController(IPropertyService propertyService, IStatusService statusService, IRepairService repairService, ICommonListService commonListService)
 {
     _propertyService   = propertyService;
     _statusService     = statusService;
     _repairService     = repairService;
     _commonListService = commonListService;
 }
Example #4
0
 public RepairServiceTests()
 {
     this.testRepairList   = this.GetTestRepairList();
     this.repairRepository = this.GetConfiguredRepairRepository(testRepairList);
     this.carRepository    = this.GetConfiguredCarRepository();
     this.repairService    = new RepairService(repairRepository.Object, carRepository.Object);
 }
 public RepairController(IVehicleService vehicleService, IRepairService repairService, ILogger <RepairController> logger,
                         IMapper mapper)
 {
     _repairService  = repairService;
     _vehicleService = vehicleService;
     _mapper         = mapper;
     _logger         = logger;
 }
Example #6
0
 public WorkFlowController(IWorkFlowService workFlowService,
                           IRepairService repairService,
                           ILogger logger)
 {
     _IWorkFlowService = workFlowService;
     _IRepairService   = repairService;
     _ILogger          = logger;
 }
Example #7
0
 public MainController(
     ILogger <MainController> logger,
     IRepairService repairService,
     IBaseRepository <Document> document)
 {
     _logger       = logger;
     RepairService = repairService;
     Documents     = document;
 }
Example #8
0
 public RepairController(IRepairService repairService, IHistoryStatusService historyStatusService,
                         IRepairStatusService repairStatusService, IOwnerService ownerService, IMasterService masterService)
 {
     _repairService        = repairService;
     _historyStatusService = historyStatusService;
     _repairStatusService  = repairStatusService;
     _ownerService         = ownerService;
     _masterService        = masterService;
 }
Example #9
0
 public RepairController(IRepairService repairService,
                         ICustomerService customerService, IProductService productService,
                         ISaparePartService saparePartService)
 {
     _repairService     = repairService;
     _customerService   = customerService;
     _productService    = productService;
     _saparePartService = saparePartService;
 }
Example #10
0
 public WorkFlowController(IFlowNodeDefineService flowNodeDefineService,
                           IWorkFlowService workFlowService,
                           IRepairService repairService,
                           ILogger logger)
 {
     _IWorkFlowService       = workFlowService;
     _IRepairService         = repairService;
     _ILogger                = logger;
     _IFlowNodeDefineService = flowNodeDefineService;
 }
Example #11
0
 public RepairController(IRepairService repairService, IMenuLinkService menuLinkService,
                         IAttributeValueService attributeValueService, IRepairGalleryService galleryService
                         , IImagePlugin imagePlugin, IBrandService brandService, IRepairItemService repairItemService
                         , ICacheManager cacheManager)
     : base(cacheManager)
 {
     _repairService     = repairService;
     _galleryService    = galleryService;
     _imagePlugin       = imagePlugin;
     _brandService      = brandService;
     _repairItemService = repairItemService;
 }
 public OrderController(
     IMapper mapper,
     IOrderService orderService,
     IDeviceService deviceService,
     IRepairService repairService,
     IEmployeeService employeeService)
 {
     this.mapper          = mapper;
     this.orderService    = orderService;
     this.deviceService   = deviceService;
     this.repairService   = repairService;
     this.employeeService = employeeService;
 }
 public RepairController(
     IRepairService repairService,
     ICarService carservice,
     IRepairImageService repairImageService,
     ICommentsService commentService,
     IMakesService makesService,
     IModelsService modelsService,
     UserManager <ApplicationUser> userManager,
     Cloudinary cloudinary)
 {
     this.repairService      = repairService;
     this.carservice         = carservice;
     this.repairImageService = repairImageService;
     this.commentService     = commentService;
     this.makesService       = makesService;
     this.modelsService      = modelsService;
     this.userManager        = userManager;
     this.cloudinary         = cloudinary;
 }
 public RepairController(IVehicleService vehicleService, IRepairService repairService, UserManager <MdmsUser> userManager)
 {
     _vehicleService = vehicleService;
     _repairService  = repairService;
     _userManager    = userManager;
 }
Example #15
0
 public PrintController(IRepairService orderService)
 {
     _orderService = orderService;
 }
 public RepairsController(IRepairService repairsService)
 {
     this.repairsService = repairsService;
 }
 public RepairController(IRepairService repairService, IRequiredRepairTypeService requiredRepairTypeService, IEmployeeRepairService employeeRepairService)
 {
     _repairService             = repairService;
     _requiredRepairTypeService = requiredRepairTypeService;
     _employeeRepairService     = employeeRepairService;
 }
Example #18
0
 public RepairController(IRepairService repairService, ILogger logger)
 {
     _IRepairService = repairService;
     _ILogger        = logger;
 }
 public HomeController(IRepairService repairService)
 {
     _repairService = repairService;
 }
 public RepairListViewComponent(IRepairService service)
 {
     _service = service;
 }
 public ExternalRepairProviderViewComponent(IRepairService repairService)
 {
     _repairService = repairService;
 }
Example #22
0
 public UsersController(UserManager <AppUser> userManager, SignInManager <AppUser> signInManager, IRepairService repairService)
 {
     _userManager   = userManager;
     _signInManager = signInManager;
     _repairService = repairService;
 }
Example #23
0
 public RepairController(IRepairService repairService, IHistoryStatusService historyStatusService)
 {
     _repairService        = repairService;
     _historyStatusService = historyStatusService;
 }
Example #24
0
 public ApiController(IRepairService repairService)
 {
     _repairService = repairService;
 }
 public RepairController(IRepairService repairService, IUnitOfWork unitOfWork)
 {
     this._repairService = repairService;
     this._unitOfWork    = unitOfWork;
 }
Example #26
0
 public PartController(IPartService partService, IRepairService repairService, UserManager <MdmsUser> userManager)
 {
     _partService   = partService;
     _repairService = repairService;
     _userManager   = userManager;
 }
Example #27
0
 public LeaseController(ILeaseService leaseService, IPropertyService propertyService, IStatusService statusService, IRepairService repairService, ICommonListService commonListService, ITenantService tenantService)
 {
     _leaseService      = leaseService;
     _propertyService   = propertyService;
     _statusService     = statusService;
     _commonListService = commonListService;
     _tenantService     = tenantService;
 }
Example #28
0
 public RepairResource(IRepairService repairService)
 {
     _repairService = repairService;
 }
 public RepairController(IRepairService service)
 {
     _service = service;
 }
Example #30
0
 public RepairedSystemViewComponent(IRepairService repairService)
 {
     _repairService = repairService;
 }