-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWorker.h
More file actions
29 lines (22 loc) · 700 Bytes
/
Worker.h
File metadata and controls
29 lines (22 loc) · 700 Bytes
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
//
// Worker.h
// Family Farm
//
// Created by Axel Trajano on 5/17/14.
// Copyright (c) 2014 Axel S. Trajano. All rights reserved.
//
#import <Foundation/Foundation.h>
#import <CoreData/CoreData.h>
#import "Person.h"
@class Transaction;
@interface Worker : Person
@property (nonatomic, retain) NSDecimalNumber * totalAdvanced;
@property (nonatomic, retain) NSDecimalNumber * totalSalary;
@property (nonatomic, retain) NSSet *transactions;
@end
@interface Worker (CoreDataGeneratedAccessors)
- (void)addTransactionsObject:(Transaction *)value;
- (void)removeTransactionsObject:(Transaction *)value;
- (void)addTransactions:(NSSet *)values;
- (void)removeTransactions:(NSSet *)values;
@end