コード例 #1
0
ファイル: SearchService.cs プロジェクト: yotovds/SimpleAds
 public SearchService(SimpleAdsDbContext context, IMapper mapper, IAdsService adsService)
     : base(context, mapper)
 {
     this.adsService = adsService;
 }
コード例 #2
0
ファイル: BaseService.cs プロジェクト: yotovds/SimpleAds
 protected BaseService(SimpleAdsDbContext context, IMapper mapper)
 {
     this.context = context;
     this.mapper  = mapper;
 }
コード例 #3
0
 public AdsService(SimpleAdsDbContext context, IMapper mapper)
     : base(context, mapper)
 {
 }