public AttendancePropertyProvider(IAttendanceSearchRepository searchRepository,
                                   IAttendanceCategoryPropertyProvider categoryPropertyProvider
                                   )
 {
     _searchRepository         = searchRepository;
     _categoryPropertyProvider = categoryPropertyProvider;
 }
 public AttendanceCategoryPropertySearchService(IAttendanceCategoryPropertySearchRepository categoryPropertySearchRepository,
                                                IAttendanceCategoryPropertyProvider categoryPropertyProvider
                                                )
 {
     base.CategoryAssociationProvider       = categoryPropertyProvider;
     base.EntityAssociationSearchRepository = categoryPropertySearchRepository;
 }