-
Notifications
You must be signed in to change notification settings - Fork 0
/
AssessmentTypeEntity.h
37 lines (29 loc) · 1.14 KB
/
AssessmentTypeEntity.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
//
// AssessmentTypeEntity.h
// PsyTrack Clinician Tools
// Version: 1.5.4
//
// Created by Daniel Boice on 1/1/13.
// Copyright (c) 2013 PsycheWeb LLC. All rights reserved.
//
#import <Foundation/Foundation.h>
#import <CoreData/CoreData.h>
@class AssessmentEntity, ExistingAssessmentEntity;
@interface AssessmentTypeEntity : NSManagedObject
@property (nonatomic, retain) NSNumber *order;
@property (nonatomic, retain) NSString *notes;
@property (nonatomic, retain) NSString *assessmentType;
@property (nonatomic, retain) NSSet *existingAssessments;
@property (nonatomic, retain) NSSet *assessments;
@end
@interface AssessmentTypeEntity (CoreDataGeneratedAccessors)
- (void) addExistingAssessmentsObject:(ExistingAssessmentEntity *)value;
- (void) removeExistingAssessmentsObject:(ExistingAssessmentEntity *)value;
- (void) addExistingAssessments:(NSSet *)values;
- (void) removeExistingAssessments:(NSSet *)values;
- (void) addAssessmentsObject:(AssessmentEntity *)value;
- (void) removeAssessmentsObject:(AssessmentEntity *)value;
- (void) addAssessments:(NSSet *)values;
- (void) removeAssessments:(NSSet *)values;
-(BOOL)associatedWithTimeRecords;
@end