Esempio n. 1
0
        public CarDetailersController(ICarDetailerService service,
                                      IOptions <AppSettings> appSettings)
        {
            _carDetailerService = service;

            _appSettings = appSettings.Value;
        }
Esempio n. 2
0
 public AccountService(ICarDetailerService carDetailerService, ICustomerService customerService)
 {
     _carDetailerService = carDetailerService;
     _customerService    = customerService;
 }