//
//  NewCostViewController.h
//  XFFruit
//
//  Created by 陈俊俊 on 15/9/7.
//  Copyright (c) 2015年 Xummer. All rights reserved.
//

#import "ICRBaseViewController.h"
#import "FeeAcountDetail.h"
typedef void(^GetTransportCost)(FeeAcountDetail *accountDetail,NSIndexPath *indexPath);
typedef void(^DeleteTransportCost)(FeeAcountDetail *accountDetail,NSIndexPath *indexPath);
@interface NewCostViewController : ICRBaseViewController
@property (nonatomic,copy)GetTransportCost getTransportCost;
@property (nonatomic,copy)DeleteTransportCost deleteTransportCost;
@property (nonatomic,strong)NSString *navTitle;
@property (nonatomic,strong)FeeAcountDetail *accountDetail;
@property (nonatomic,strong)NSIndexPath *indexPath;
@end