19 lines
455 B
Objective-C
19 lines
455 B
Objective-C
//
|
|
// Lesson+Create.h
|
|
// Palabel
|
|
//
|
|
// Created by Abel Fokkinga on 1/29/12.
|
|
// Copyright (c) 2012 T-consult International vof. All rights reserved.
|
|
//
|
|
|
|
#import "Lesson.h"
|
|
#import "Tense.h"
|
|
#import "Conjugator.h"
|
|
|
|
@interface Lesson (Create)
|
|
|
|
+ (void) addLessonWithTitle:(NSString *) title andSubTitle:(NSString *)subTitle
|
|
inTense:(Tense *)tense conjugatedBy:(id <Conjugator>) conjugator inManagedObjectContext:(NSManagedObjectContext *) context;
|
|
|
|
@end
|