Blame view

DUREX Vendor Control/Sale.m 330 Bytes
Imanol-Mikel Barba Sabariego authored
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//
//  Sale.m
//  DUREX Vendor Control
//
//  Created by Imanol Barba on 07/09/14.
//  Copyright (c) 2014 Emmoco. All rights reserved.
//

#import "Sale.h"

@implementation Sale

- (id) init
{
    [self setMoneyPaid:[[NSMutableArray alloc]init]];
    [self setMoneyReturned:[[NSMutableArray alloc]init]];
    return self;
}

@end