コード例 #1
0
ファイル: ProductController.cs プロジェクト: kaganbkn/Related
 public ProductController(IMapper mapper, IAppProductRepository appProductRepository)
 {
     _mapper = mapper;
     _appProductRepository = appProductRepository;
 }
コード例 #2
0
 public AppProductController(IAppProductRepository ir) => repo = ir;