public CustomerFinancePropertyService(ICustomerFinancePropertyAddService financePropertyAddService,
                                       ICustomerFinancePropertyDeleteService financePropertyDeleteService,
                                       ICustomerFinancePropertySearchService financePropertySearchService,
                                       ICustomerFinancePropertyUpdateService financePropertyUpdateService)
 {
     AddService    = financePropertyAddService;
     DeleteService = financePropertyDeleteService;
     SearchService = financePropertySearchService;
     UpdateService = financePropertyUpdateService;
 }
 public CustomerFinanceController(ICustomerFinanceService financeService,
                                  ICustomerFinanceSearchService financeSearchService,
                                  ICustomerFinanceCategoryService financeCategoryService,
                                  ICustomerSearchService customerSearchService,
                                  ICustomerFinanceWrapper[] financeWrappers,
                                  ICustomerFinancePropertySearchService propertySearchService,
                                  IExcelDataHaveColumnExporter dataExporter)
 {
     _financeService         = financeService;
     _financeSearchService   = financeSearchService;
     _financeCategoryService = financeCategoryService;
     _customerSearchService  = customerSearchService;
     _financeWrappers        = financeWrappers;
     _propertySearchService  = propertySearchService;
     _dataExporter           = dataExporter;
 }