public TeslaMeasurementServiceImpl(OwnerApiClient client, OwnerApiAuthenticationService authService,
                                    ProductService productService, DateTimeZone reportTimeZone)
 {
     this.client         = client;
     this.authService    = authService;
     this.productService = productService;
     this.reportTimeZone = reportTimeZone;
 }
 public OwnerApiServiceImpl(OwnerApiAuthenticationService ownerApiAuthenticationService, ProductService productService, MeasurementService measurementService)
 {
     authentication = ownerApiAuthenticationService;
     product        = productService;
     measurement    = measurementService;
 }