00001
00002
00003
00004
00005
00006
00007
00008
00009 #ifndef Augmented_Reality_Tractor_Maintenance_JDAlertManagerImproved_h
00010 #define Augmented_Reality_Tractor_Maintenance_JDAlertManagerImproved_h
00011
00012 #import "JDDatabaseManager.h"
00013
00015 #define ALERTDURATIONDAYS 7
00016
00018 @interface JDTempTractorAlert : NSObject
00019 @property (nonatomic, strong) NSString *displayValue;
00020 @property (nonatomic, strong) JDFieldArray *maintenanceItem;
00021 @end
00022
00023
00024 @interface JDAlertManagerImporved : NSObject
00025
00026 -(instancetype)init;
00027
00028 -(void) getAlertsWithUserID:(NSString *)userID;
00029 -(NSArray *) getAlertsWithTractorID: (unsigned long)tractorID withType:(NSString *)tractorType;
00030
00031 @property (nonatomic, strong) NSMutableArray *tractors;
00032 @property (nonatomic, strong) NSMutableDictionary *things;
00033
00034 @end
00035
00036 #endif