Example #1
0
 public RestaurantInfoController(IRestaurantInfoService restaurantInfoService)
 {
     _restaurantInfoService = restaurantInfoService;
 }
 public RestaurantInfoRepository(IMapper mapper, IRestaurantInfoService restaurantInfo)
 {
     _mapper         = mapper;
     _restaurantInfo = restaurantInfo;
 }