コード例 #1
0
 public NewInfoApp(INewsInfoRepository newsInfoRepository)
 {
     this.service = newsInfoRepository;
 }
コード例 #2
0
 public NewsInfoController(NewsInfoService newsInfoService, INewsInfoRepository newsInfoRepository)
 {
     NewsInfoService    = newsInfoService;
     NewsInfoRepository = newsInfoRepository;
 }
コード例 #3
0
 public NewsInfoService(INewsInfoRepository newsInfoRepository)
 {
     NewsInfoRepository = newsInfoRepository;
 }