-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathService.h
More file actions
32 lines (25 loc) · 885 Bytes
/
Service.h
File metadata and controls
32 lines (25 loc) · 885 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
30
31
32
//
// Service.h
// Axelerate
//
// Created by Axel Trajano on 5/22/14.
// Copyright (c) 2014 AxElite. All rights reserved.
//
#import <Foundation/Foundation.h>
#import <CoreData/CoreData.h>
@class Transaction;
@interface Service : NSManagedObject
@property (nonatomic, retain) NSDecimalNumber * baseCost;
@property (nonatomic, retain) NSNumber * baseLandArea;
@property (nonatomic, retain) NSNumber * defaultPercentage;
@property (nonatomic, retain) NSString * name;
@property (nonatomic, retain) NSString * unitOfLand;
@property (nonatomic, retain) NSString * unitOfCost;
@property (nonatomic, retain) NSSet *transactions;
@end
@interface Service (CoreDataGeneratedAccessors)
- (void)addTransactionsObject:(Transaction *)value;
- (void)removeTransactionsObject:(Transaction *)value;
- (void)addTransactions:(NSSet *)values;
- (void)removeTransactions:(NSSet *)values;
@end