public RentingService(IIotActionServices iotActionServices, IRentalDataService rentalSQLService, IDispenserService dispenserService, IPaymentService paymentService, RandomCodeGenerator randomCodeGenerator) { this.iotActionServices = iotActionServices; this.rentalSQLService = rentalSQLService; this.dispenserService = dispenserService; this.paymentService = paymentService; this.randomCodeGenerator = randomCodeGenerator; }
public RentalService(IRentalDataService dataService, IUserService userService, IMediaService mediaService) { this._dataService = dataService; this._userService = userService; this._mediaService = mediaService; }
public PaymentService(ITaxService taxService, IRentalDataService rentalSQLService) { this.taxService = taxService; this.rentalSQLService = rentalSQLService; }