示例#1
0
 public ProductCarCateController(
     IProductCarCateService _ProductCarCateService,
     ICarCateService _CarCateService
     )
 {
     this.ProductCarCateService = _ProductCarCateService;
     this.CarCateService        = _CarCateService;
 }
示例#2
0
 public CarCateController(
     ICarCateService _CarCateService
     )
 {
     this.CarCateService = _CarCateService;
 }