Today's Menu  Portugal
journal and plan nutrition
EmailMessage+CoreDataClass.h
Go to the documentation of this file.
1 //
2 // EmailMessage+CoreDataClass.h
3 // TodaysMenu
4 //
5 // Created by Don Zeek on 6/7/18.
6 // Copyright © 2018 net.dzeek.y2015.ios.portfolio. All rights reserved.
7 //
8 //
9 
10 #import <Foundation/Foundation.h>
11 #import <CoreData/CoreData.h>
12 
13 NS_ASSUME_NONNULL_BEGIN
14 
15 @interface EmailMessage : NSManagedObject
16 
17 // + (EmailMessage *) findEmailMessageWithKey:(NSString *)randomkey context:(NSManagedObjectContext *)moc;
18 // + (EmailMessage *) findOrCreateEmailMessageWithRandomkey:(NSString *)key context:(NSManagedObjectContext *) moc;
19 // + (EmailMessage *) findOrCreateEmailMessageWithUID:(NSNumber *)uidkey context:(NSManagedObjectContext *)moc;
20 
21 + (EmailMessage *) findOrCreateEmailMessageWithFileIdentification:(NSString *)googlefileid
22  context:(NSManagedObjectContext *) moc;
23 + (Boolean) deleteEmailMessageWithFileIdentification:(NSString *)googlefileid
24  context:(NSManagedObjectContext *) moc;
25 
26 + (NSArray *) emailMessageWithKey:(NSString *)randomkey context:(NSManagedObjectContext *)moc;
27 + (NSArray *) emailMessageWithFileid:(NSString *)googlefileid context:(NSManagedObjectContext *)moc;
28 
29 @end
30 
31 NS_ASSUME_NONNULL_END
32