Exemplo n.º 1
0
 public NewInfoApp(INewsInfoRepository newsInfoRepository)
 {
     this.service = newsInfoRepository;
 }
 public NewsInfoController(NewsInfoService newsInfoService, INewsInfoRepository newsInfoRepository)
 {
     NewsInfoService    = newsInfoService;
     NewsInfoRepository = newsInfoRepository;
 }
Exemplo n.º 3
0
 public NewsInfoService(INewsInfoRepository newsInfoRepository)
 {
     NewsInfoRepository = newsInfoRepository;
 }