public CustomerFinancePropertyProvider(ICustomerFinanceSearchRepository customerFinanceSearchRepository,
                                        ICustomerFinanceCategoryPropertyProvider customerFinanceCategoryPropertyProvider
                                        )
 {
     _customerFinanceSearchRepository         = customerFinanceSearchRepository;
     _customerFinanceCategoryPropertyProvider = customerFinanceCategoryPropertyProvider;
 }
 public CustomerFinanceCategoryPropertySearchService(ICustomerFinanceCategoryPropertySearchRepository goodsCategoryPropertySearchRepository,
                                                     ICustomerFinanceCategoryPropertyProvider goodsCategoryPropertyProvider
                                                     )
 {
     base.CategoryAssociationProvider       = goodsCategoryPropertyProvider;
     base.EntityAssociationSearchRepository = goodsCategoryPropertySearchRepository;
 }