コード例 #1
0
 public SDController(ISDRepository sdRepository, IMapper mapper)
 {
     this.sdRepository = sdRepository;
     this.mapper       = mapper;
 }
コード例 #2
0
ファイル: CartController.cs プロジェクト: spotuk/lab
 public CartController(IProductRepository repo, ISDRepository processor)
 {
     repository     = repo;
     orderProcessor = processor;
 }