예제 #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
 public RequestBLL()
 {
     _IRequestDAL = new RequestDAL();
 }