public HotDog GetHotDogById(int v)
 {
     return(hotDogRepository.GetHotDogById(v));
 }
Example #2
0
 public HotDog GetHotDogById(int hotDogId)
 {
     return(hotDogRepository.GetHotDogById(hotDogId));
 }
 public HotDog GetHotDogById(int idHot)
 {
     return(hotDogRepository.GetHotDogById(idHot));
 }