Esempio n. 1
0
 public StuffController(IStuffService stuffService, IStuffCategoryService stuffCategoryService, IStuffManufactureService stuffManufactureService)
 {
     _stuffService = stuffService;
     _stuffCategoryService = stuffCategoryService;
     _stuffManufactureService = stuffManufactureService;
     _stuffMapper = new StuffMapper(_stuffCategoryService, _stuffManufactureService, _stuffService);
 }
Esempio n. 2
0
 public ToolMapper(IStuffCategoryService stuffCategoryService, IStuffManufactureService stuffManufactureService, IToolService toolService, IHolderService holderService, ICompanyAreasService companyAreaService, ICheckinToolService checkinToolService)
 {
     _stuffCategoryService = stuffCategoryService;
     _stuffManufactureService = stuffManufactureService;
     _toolService = toolService;
     _holderService = holderService;
     _companyAreaService = companyAreaService;
     _checkinToolService = checkinToolService;
 }
Esempio n. 3
0
 public ToolController(IToolService toolService, IStuffCategoryService stuffCategoryService, IStuffManufactureService stuffManufactureService,
      IHolderService holderService, ICompanyAreasService companyAreasService, ICheckinToolService checkinToolService)
 {
     _toolService = toolService;
     _stuffCategoryService = stuffCategoryService;
     _stuffManufactureService = stuffManufactureService;
     _checkinToolService = checkinToolService;
     _toolMapper = new ToolMapper(_stuffCategoryService, _stuffManufactureService, _toolService, holderService, companyAreasService, checkinToolService);
 }