public CustomerFinancePropertyController(ICustomerFinancePropertyService financePropertyService,
                                          IPropertyTypeProvider propertyTypeProvider
                                          )
 {
     _financePropertyService = financePropertyService;
     _propertyTypeProvider   = propertyTypeProvider;
 }
Example #2
0
 public CustomerFinanceCategoryController(ICustomerFinanceCategoryService financeCategoryService,
                                          ICustomerFinanceCategoryPropertyBindService financeCategoryPropertyBindService,
                                          ICustomerFinanceCategoryPropertySearchService financeCategoryPropertySearchService,
                                          ICustomerFinancePropertyService financePropertyService
                                          )
 {
     _financeCategoryService               = financeCategoryService;
     _financeCategoryPropertyBindService   = financeCategoryPropertyBindService;
     _financeCategoryPropertySearchService = financeCategoryPropertySearchService;
     _financePropertyService               = financePropertyService;
 }