public BiddingManagementAppService(IBiddingManagementRepository biddingManagementRepository,
                                    ICostListRepository costListRepository,
                                    IProcurementPlanRepository procurementPlanRepository,
                                    ISysDictionaryRepository sysDictionaryRepository)
 {
     this._biddingManagementRepository = biddingManagementRepository;
     this._costListRepository          = costListRepository;
     this._procurementPlanRepository   = procurementPlanRepository;
     this._sysDictionaryRepository     = sysDictionaryRepository;
 }
 public CostListAppService(ICostListRepository costListRepository)
 {
     this._costListRepository = costListRepository;
 }