1 2 3 4 5 6 7 8 9
// // SalesLog.h // DUREX Vendor Control // // Created by Imanol Barba on 07/09/14. // Copyright (c) 2014 Emmoco. All rights reserved. // #import <Foundation/Foundation.h>
10 11
#import "CommunicationProtocol.h" #import "Sale.h"
12 13 14 15 16 17 18 19 20 21
@interface SalesLog : NSObject @property (strong,nonatomic) NSString *response; @property (strong,nonatomic) NSMutableArray *sales; - (id) init; - (void) setResponseValue:(NSString *)response; @end