public AttendanceCategoryPropertySearchService(IAttendanceCategoryPropertySearchRepository categoryPropertySearchRepository,
                                                IAttendanceCategoryPropertyProvider categoryPropertyProvider
                                                )
 {
     base.CategoryAssociationProvider       = categoryPropertyProvider;
     base.EntityAssociationSearchRepository = categoryPropertySearchRepository;
 }
示例#2
0
 public AttendanceCategoryPropertyBindService(IAttendanceCategoryPropertyBindRepository categoryPropertyBindRepository,
                                              IAttendanceCategoryPropertySearchRepository categoryPropertySearchRepository,
                                              IEnumerable <IAttendanceCategoryPropertyBindTrigger> categoryPropertyBindTriggers,
                                              IAttendanceCategorySearchRepository categorySearchRepository,
                                              IAttendancePropertySearchRepository propertySearchRepository
                                              )
 {
     base.EntityAssociationBindRepository   = categoryPropertyBindRepository;
     base.EntityAssociationSearchRepository = categoryPropertySearchRepository;
     base.CategoryAssociationBindTriggers   = categoryPropertyBindTriggers;
     base.CategorySearchRepository          = categorySearchRepository;
     base.AssociationSearchRepository       = propertySearchRepository;
 }
示例#3
0
 public AttendanceCategoryPropertyProvider(IAttendanceCategoryPropertySearchRepository categoryPropertySearchRepository,
                                           IAttendanceCategorySearchRepository categorySearchRepository)
 {
     base.CategorySearchRepository            = categorySearchRepository;
     base.CategoryAssociationSearchRepository = categoryPropertySearchRepository;
 }
示例#4
0
 public AttendancePropertyUsedByCategoryChecker(IAttendanceCategoryPropertySearchRepository goodsategoryPropertySearchRepository)
 {
     base.CategoryPropertySearchRepository = goodsategoryPropertySearchRepository;
 }