Sale.h 495 Bytes
//
//  Sale.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"

@interface Sale : NSObject

@property (strong,nonatomic) NSMutableArray *moneyPaid;
@property (strong,nonatomic) NSMutableArray *moneyReturned;
@property NSString *productCode;
@property NSString *normalPrice;
@property NSString *channel;
@property NSDate *saleTime;

- (id) init;

@end