|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
//
// 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;
|