コード例 #1
0
 public PatronsController(IPatronService patronService, IInmateUnitService inmateUnitService, IUserService userService, IMapper<PatronDTO, Patron> mapper)
 {
     _patronService = patronService;
     _inmateUnitService = inmateUnitService;
     _userService = userService;
     _mapper = mapper;
 }
コード例 #2
0
 public SettingsController(ISettingsMapper mapper, IEstimateStatusService estimateStatusService, IInmateUnitService inmateUnitService, IInvoiceStatusService invoiceStatusService, IPaymentMethodService paymentMethodService, IProductCategoryService productCategoryService, IProductService productService, ITaxRateService taxRateService, IUserService userService)
 {
     _mapper = mapper;
     _estimateStatusService = estimateStatusService;
     _inmateUnitService = inmateUnitService;
     _invoiceStatusService = invoiceStatusService;
     _paymentMethodService = paymentMethodService;
     _productCategoryService = productCategoryService;
     _productService = productService;
     _taxRateService = taxRateService;
     _userService = userService;
 }