Пример #1
0
 public CarAdsController(
     ICarAdService carAds,
     ICarAdViewService carAdViews,
     IMapper mapper)
 {
     this.carAds     = carAds;
     this.carAdViews = carAdViews;
     this.mapper     = mapper;
 }
Пример #2
0
 public CarAdViewsController(ICarAdViewService carAdViews)
 => this.carAdViews = carAdViews;