Beispiel #1
0
 public TShirtService(ICurrencyService currencyService,
                      BaseReadOnlyRepository <TShirt> repository,
                      IMapper mapper)
 {
     this._repository      = repository;
     this._mapper          = mapper;
     this._currencyService = currencyService;
 }
Beispiel #2
0
 public PhoneCaseService(ICurrencyService currencyService,
                         BaseReadOnlyRepository <PhoneCase> repository,
                         IMapper mapper)
 {
     this._currencyService = currencyService;
     this._repository      = repository;
     this._mapper          = mapper;
 }
Beispiel #3
0
 public LawnmowerService(ICurrencyService currencyService,
                         BaseReadOnlyRepository <Lawnmower> repository,
                         IMapper mapper)
 {
     this._currencyService = currencyService;
     this._repository      = repository;
     this._mapper          = mapper;
 }