Exemple #1
0
 public RestaurantInfoController(IRestaurantInfoRepository repository)
 {
     _repository = repository;
 }
 public RestaurantInfoController(IRestaurantInfoRepository restaurantInfoRepository, IMapper mapper)
 {
     _restaurantInfoRepository = restaurantInfoRepository;
     _mapper = mapper;
 }