Exemplo n.º 1
0
 protected override void Dispose(bool disposing)
 {
     if (disposing)
     {
         if (productService != null)
         {
             productService.Dispose();
             productService = null;
         }
         if (providerRepository != null)
         {
             providerRepository.Dispose();
             providerRepository = null;
         }
         if (packagingRepository != null)
         {
             packagingRepository.Dispose();
             packagingRepository = null;
         }
         if (currencyTypeRepository != null)
         {
             currencyTypeRepository.Dispose();
             currencyTypeRepository = null;
         }
         if (productDocumentService != null)
         {
             productDocumentService.Dispose();
             productDocumentService = null;
         }
     }
     base.Dispose(disposing);
 }
Exemplo n.º 2
0
 protected override void Dispose(bool disposing)
 {
     if (disposing && packagingRepository != null)
     {
         packagingRepository.Dispose();
         packagingRepository = null;
     }
     base.Dispose(disposing);
 }
Exemplo n.º 3
0
 protected override void Dispose(bool disposing)
 {
     if (disposing)
     {
         if (productService != null)
         {
             productService.Dispose();
             productService = null;
         }
         if (providerRepository != null)
         {
             providerRepository.Dispose();
             providerRepository = null;
         }
         if (packagingRepository != null)
         {
             packagingRepository.Dispose();
             packagingRepository = null;
         }
         if (freightTypeRepository != null)
         {
             freightTypeRepository.Dispose();
             freightTypeRepository = null;
         }
         if (currencyTypeRepository != null)
         {
             currencyTypeRepository.Dispose();
             currencyTypeRepository = null;
         }
         if (productDocumentService != null)
         {
             productDocumentService.Dispose();
             productDocumentService = null;
         }
         if (sellerCompanyRepository != null)
         {
             sellerCompanyRepository.Dispose();
             sellerCompanyRepository = null;
         }
         if (iibbTreatmentRepository != null)
         {
             iibbTreatmentRepository.Dispose();
             iibbTreatmentRepository = null;
         }
     }
     base.Dispose(disposing);
 }
Exemplo n.º 4
0
        protected virtual void Dispose(bool disposing)
        {
            if (disposing)
            {
                // Free managed resources
                if (_productQuoteRepository != null)
                {
                    _productQuoteRepository.Dispose();
                }
                if (_productRepository != null)
                {
                    _productRepository.Dispose();
                }
                if (_workflowMessageService != null)
                {
                    _workflowMessageService.Dispose();
                }
                if (_pdfService != null)
                {
                    _pdfService.Dispose();
                }
                if (_saleModalityProductRepository != null)
                {
                    _saleModalityProductRepository.Dispose();
                }
                if (_saleModalityCreditRatingRepository != null)
                {
                    _saleModalityCreditRatingRepository.Dispose();
                }
                if (_globalVariableRepository != null)
                {
                    _globalVariableRepository.Dispose();
                }
                if (_customerOrderRepository != null)
                {
                    _customerOrderRepository.Dispose();
                }
                if (_customerRepository != null)
                {
                    _customerRepository.Dispose();
                }
                if (_transportTypeRepository != null)
                {
                    _transportTypeRepository.Dispose();
                }
                if (_geographicAreaTransportTypeRepository != null)
                {
                    _geographicAreaTransportTypeRepository.Dispose();
                }
                if (_packagingRepository != null)
                {
                    _packagingRepository.Dispose();
                }

                if (_rofexRepository != null)
                {
                    _rofexRepository.Dispose();
                }
                if (_paymentDeadlineRepository != null)
                {
                    _paymentDeadlineRepository.Dispose();
                }
                if (_shipmentTrackingRepository != null)
                {
                    _shipmentTrackingRepository.Dispose();
                }
                if (_customerProductRepository != null)
                {
                    _customerProductRepository.Dispose();
                }
                if (_customerOrderService != null)
                {
                    _customerOrderService.Dispose();
                }
                if (_transportService != null)
                {
                    _transportService.Dispose();
                }
                if (_marginServices != null)
                {
                    _marginServices.Dispose();
                }
                if (_wayOfExceptionRepository != null)
                {
                    _wayOfExceptionRepository.Dispose();
                }
                if (_wayOfExceptionServices != null)
                {
                    _wayOfExceptionServices.Dispose();
                }
            }
        }