コード例 #1
0
 public RequestService(IRequestDAL requestDal, IBuyerService buyerService, IDealerService dealerService, ICarService carService)
 {
     this.RequestDal    = requestDal;
     this.BuyerService  = buyerService;
     this.DealerService = dealerService;
     this.CarService    = carService;
 }
コード例 #2
0
ファイル: RequestBLL.cs プロジェクト: MohamedMedina/SamDb
 public RequestBLL()
 {
     _IRequestDAL = new RequestDAL();
 }