//
//  Immeuble.m
//  Agence
//
//  Created by Olivier Savard on 11-01-21.
//  Copyright 2011 OSInfo Informatique. All rights reserved.
//

#import "Immeuble.h"


@implementation Immeuble
@synthesize immeubleID;
@synthesize type;
@synthesize style;
@synthesize adresse;
@synthesize nbrEtages;
@synthesize nbrChambres;
@synthesize nbrSallesDeBain;
@synthesize nbrSallesDeau;
@synthesize batiment;
@synthesize terrain;
@synthesize orientationCour;
@synthesize anneeConstruction;
@synthesize fraisCopropriete;
@synthesize fraisEntretien;
@synthesize distance;
@synthesize prix;



-(void)dealloc{
	style.release;
	adresse.release;
	batiment.release;
	terrain.release;
	orientationCour.release;
	anneeConstruction.release;
	[super dealloc];
}

@end
