コード例 #1
0
ファイル: MutationsService.cs プロジェクト: Heuts/Banksy
 public MutationsService(BanksyContext context, IMapper mapper)
 {
     this.context = context;
     this.mapper  = mapper;
 }
コード例 #2
0
ファイル: ImportService.cs プロジェクト: Heuts/Banksy
 public ImportService(BanksyContext context, IMutationsService mutationService)
 {
     this.context         = context;
     this.mutationService = mutationService;
 }