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
// // SalesLog.m // DUREX Vendor Control // // Created by Imanol Barba on 07/09/14. // Copyright (c) 2014 Emmoco. All rights reserved. // #import "SalesLog.h" @implementation SalesLog - (id) init { [self setSales:[[NSMutableArray alloc] init]]; return self; } - (void) setResponseValue:(NSString *)response { [self setResponse: response]; [self parseResponse]; } - (void) parseResponse { } @end