public ContaAzulSincronizaProdutoTask(IContaAzulProductService contaAzulProductService,
                                       ISettingService settingService,
                                       IContaAzulService contaAzulService,
                                       IProductService productService,
                                       IStoreService storeService,
                                       IWorkContext workContext,
                                       ILogger logger)
 {
     _contaAzulProductService = contaAzulProductService;
     _contaAzulService        = contaAzulService;
     _productService          = productService;
     _storeService            = storeService;
     _logger         = logger;
     _settingService = settingService;
 }
 public ContaAzulSincronizaClienteTask(IContaAzulCustomerService contaAzulCustomerService,
                                       ISettingService settingService,
                                       IContaAzulService contaAzulService,
                                       ICustomerService customerService,
                                       IStoreService storeService,
                                       IWorkContext workContext,
                                       IAddressAttributeParser addressAttributeParser,
                                       ILogger logger)
 {
     _contaAzulCustomerService = contaAzulCustomerService;
     _contaAzulService         = contaAzulService;
     _customerService          = customerService;
     _storeService             = storeService;
     _addressAttributeParser   = addressAttributeParser;
     _logger         = logger;
     _settingService = settingService;
 }