Advertisement
Guest User

Untitled

a guest
Apr 25th, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.70 KB | None | 0 0
  1. private readonly ICustomerService _customerService;
  2. private readonly IMenuItemService _menuItemService;
  3. private readonly IMenuIngredientAgreggatorService _menuItemIngredientAgreggatorService;
  4. private readonly IMenuCategoryService _menuCategoryService;
  5. private readonly IMenuItemIngredientService _menuItemIngredientService;
  6. private readonly IMenuEngineeringReportingService _reportingService;
  7. private readonly IMenuEngineeringPosService _posService;
  8. private readonly IPartnershipService _partnershipService;
  9. private readonly ILocationService _locationService;
  10. private readonly IMenuIngredientService _ingredientService;
  11.  
  12.  
  13. [AuthorizeRights(UserRolesDefinition.ViewMenuEngineering)]
  14. public MenuEngineeringController(
  15. ICustomerService customerService,
  16. IMenuIngredientAgreggatorService menuIngredientAggregatorService,
  17. IMenuCategoryService menuCategoryService,
  18. IMenuItemService menuItemService,
  19. IMenuEngineeringReportingService reportingService,
  20. IMenuEngineeringPosService posService,
  21. IPartnershipService partnershipService,
  22. IMenuIngredientService ingredientService,
  23. IMenuIngredientAgreggatorService menuIngredientAgreggatorService,
  24. ILocationService locationService)
  25. {
  26. _customerService = customerService;
  27. _menuItemService = menuItemService;
  28. _menuCategoryService = menuCategoryService;
  29. _reportingService = reportingService;
  30. _posService = posService;
  31. _partnershipService = partnershipService;
  32. _menuItemIngredientAgreggatorService = menuIngredientAgreggatorService;
  33. _locationService = locationService;
  34. _ingredientService = ingredientService;
  35. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement