コード例 #1
0
 public HotDogService()
 {
     this.hotDogRepo = new HotDogRepository();
 }
コード例 #2
0
 public HotDogDataService(HotDogRepository hotDogRepository)
 {
     _hotDogRepository = hotDogRepository;
 }