SalesLog.h 432 Bytes
//
//  SalesLog.h
//  DUREX Vendor Control
//
//  Created by Imanol Barba on 07/09/14.
//  Copyright (c) 2014 Emmoco. All rights reserved.
//

#import <Foundation/Foundation.h>
#import "CommunicationProtocol.h"
#import "Sale.h"

@interface SalesLog : NSObject

@property (strong,nonatomic) NSString *response;
@property (strong,nonatomic) NSMutableArray *sales;

- (id) init;
- (void) setResponseValue : (NSString *)response;

@end