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

#import <Foundation/Foundation.h>


@interface Immeuble : NSObject {
	NSInteger immeubleID;
	NSInteger type;
	NSString *style;
	NSString *adresse;
	NSInteger nbrEtages;
	NSInteger nbrChambres;
	NSInteger nbrSallesDeBain;
	NSInteger nbrSallesDeau;
	NSString *batiment; //dimensions du batiment
	NSString *terrain;  //dimensions du terrain
	NSString *orientationCour; //orientation de la cour (nord,sud,est,ouest)
	NSString *anneeConstruction;
	NSInteger fraisCopropriete; 
	NSInteger fraisEntretien;
	NSInteger distance;
	NSInteger prix;
	
}
@property(nonatomic,readwrite) NSInteger immeubleID;
@property (nonatomic,readwrite) NSInteger type;
@property (nonatomic,retain) NSString *style;
@property (nonatomic,retain) NSString *adresse;
@property(nonatomic,readwrite) NSInteger nbrEtages;
@property(nonatomic,readwrite) NSInteger nbrChambres;
@property(nonatomic,readwrite) NSInteger nbrSallesDeBain;
@property(nonatomic,readwrite) NSInteger nbrSallesDeau;
@property (nonatomic,retain) NSString *batiment;
@property (nonatomic,retain) NSString *terrain;
@property (nonatomic,retain) NSString *orientationCour;
@property (nonatomic,retain) NSString *anneeConstruction;
@property (nonatomic,readwrite) NSInteger fraisCopropriete;
@property (nonatomic,readwrite) NSInteger fraisEntretien;
@property (nonatomic,readwrite) NSInteger distance;
@property (nonatomic,readwrite) NSInteger prix;
@end
