예제 #1
0
 public FoodsController(
     IFoodService foodService,
     IFoodTypeService foodTypeService
     )
 {
     _foodService     = foodService;
     _foodTypeService = foodTypeService;
 }
예제 #2
0
 public FoodTypeController(
     IFoodTypeService FoodTypeService,
     ICurrentContext CurrentContext
     )
 {
     this.FoodTypeService = FoodTypeService;
     this.CurrentContext  = CurrentContext;
 }
예제 #3
0
 public TourController(ITourService tourService, ICountryService countryService,
                       ICityService cityService, IHotelService hotelService,
                       IFoodTypeService foodTypeService, ITransportTypeService transportTypeService,
                       ITourTypeService tourTypeService, ICityFromService cityFromService,
                       IPlacementTypeService placementTypeService, IMapper mapper)
 {
     _tourService          = tourService;
     _countryService       = countryService;
     _cityService          = cityService;
     _hotelService         = hotelService;
     _foodTypeService      = foodTypeService;
     _transportTypeService = transportTypeService;
     _tourTypeService      = tourTypeService;
     _cityFromService      = cityFromService;
     _placementTypeService = placementTypeService;
     _mapper = mapper;
 }
예제 #4
0
 public FoodTypeController(IFoodTypeService foodTypeService, IMemoryCache cache)
 {
     _foodTypeService = foodTypeService;
     _cache           = cache;
 }
 public FoodTypeAppService(IFoodTypeService foodTypeService)
 {
     this.foodTypeService = foodTypeService;
 }
예제 #6
0
 public FoodTypeController(IFoodTypeService foodTypeService)
 {
     _foodTypeService = foodTypeService;
 }
예제 #7
0
 public FoodTypeSideBarTagHelper(
     IFoodTypeService foodTypeService
     )
 {
     _foodTypeService = foodTypeService;
 }
예제 #8
0
 public FoodTypeController(ILogger <FoodTypeController> logger, IFoodTypeService foodTypeService)
 {
     _logger  = logger;
     _service = foodTypeService;
 }