Sale.m
330 Bytes
//
// 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