Esempio n. 1
0
 public DeliveryNoteCategoryController(IDeliveryNoteCategoryService noteCategoryService,
                                       IDeliveryNoteCategoryPropertyBindService noteCategoryPropertyBindService,
                                       IDeliveryNoteCategoryPropertySearchService noteCategoryPropertySearchService,
                                       IDeliveryNotePropertyService notePropertyService,
                                       IDeliveryNoteItemPropertyService itemPropertyService,
                                       IDeliveryNoteCategoryItemPropertyBindService itemCategoryPropertyBindService,
                                       IDeliveryNoteCategoryItemPropertySearchService itemCategoryPropertySearchService
                                       )
 {
     _noteCategoryService               = noteCategoryService;
     _noteCategoryPropertyBindService   = noteCategoryPropertyBindService;
     _noteCategoryPropertySearchService = noteCategoryPropertySearchService;
     _notePropertyService               = notePropertyService;
     _itemPropertyService               = itemPropertyService;
     _itemCategoryPropertyBindService   = itemCategoryPropertyBindService;
     _itemCategoryPropertySearchService = itemCategoryPropertySearchService;
 }
 public DeliveryNotePropertyController(IDeliveryNotePropertyService notePropertyService,
                                       IPropertyTypeProvider propertyTypeProvider)
 {
     _notePropertyService  = notePropertyService;
     _propertyTypeProvider = propertyTypeProvider;
 }